Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
34 views

I'm trying to get a hardware id with a .net console app (target framewotk is net8.0-windows10.0.17763.0). The code is rather trivial, just var token = Windows.System.Profile.HardwareIdentification....
Volker's user avatar
  • 1,849
1 vote
1 answer
772 views

Can anyone provide me a piece of code in dart language to get motherboard Serial Number? I found some code in c# but I can't write it in dart language .
atishn90's user avatar
1 vote
0 answers
99 views

I was required to get the part number and the serial number. I have searched various pods and GitHub code snippets but I could not not get any lead on how to the (1P) Part No.. I have used SystemKit ...
MD Sazid Hasan Dip's user avatar
1 vote
1 answer
2k views

INTRODUCTION This thread should be the ending chapter for this first thread from 2014 and this second one from 2017. To cut the story short, you simply need to know that the Microsoft Windows SDK ...
ElektroStudios's user avatar
-2 votes
1 answer
2k views

Im trying to get the hwid of a user using csharp for a program kind of like stuff like PredatorSense which shows ur cpu speed and other stuff, ive tried using the Registry.GetValue method from ...
AverageROBLOXian's user avatar
0 votes
0 answers
160 views

For our licensing / software activation we need to uniquely identify a computer. To do that we're relying on WMI and we're building a unique computer key using BIOS Version, ProcessorID, MainHardDrive ...
David CASBONNE's user avatar
-1 votes
2 answers
2k views

I am trying to parse a large number of INF files for Windows driver installations. I have a large collection of drivers for various devices (Biometrics, Bluetooth, Video, etc) -- all with varying ...
Mason Ticehurst's user avatar
-1 votes
1 answer
1k views

I Have Some Problem with Some One Copy My Program exe , So i want make a single Code for each PC and Register My Program !! How Can Make That Single Code ( Computer ID or HardWare ID or ...) in C# ? ...
Milad-PC's user avatar
8 votes
2 answers
20k views

I want to bind a program to a specific computer, and for that I want to use the serial number of the motherboard as unique identifier. Although I could find some examples for C# and Java, I couldn't ...
AlexAngc's user avatar
  • 422
1 vote
1 answer
2k views

Im porting a windows application for Mac using Mono.I cannot use DPAPI in Mac and i think there is restriction in getting Mainboard/CPU id in Mac for User Level programs.So is there something like ...
techno's user avatar
  • 6,604
4 votes
3 answers
11k views

DWORD disk_serialINT[MAX_PATH + 1]; GetVolumeInformationA(NULL, NULL, NULL, disk_serialINT, NULL, NULL, NULL, NULL); char* disk_serialANSI; sprintf(disk_serialANSI, "%d", disk_serialINT); std::string ...
DualCore's user avatar
  • 430
0 votes
2 answers
1k views

I have a question about storing a UUID. I would like to use Java to generate a UUID and save it so that I can retrieve it the next time the application runs. In a .NET application I built, I'm doing ...
Spencer D's user avatar
  • 3,486
0 votes
1 answer
785 views

I have created an online multiplayer card game using Adobe flash Professional. In this game multiple clients/account is not allowed, hence I need to detect whether the users are joining game from ...
csuo's user avatar
  • 820
0 votes
1 answer
2k views

I'm trying to generate a unique hardware id for my application and I saw something simple but it's from autoit, the function is _WinAPI_UniqueHardwareID() which generate unique id base on hardware and ...
MarkCluster's user avatar
0 votes
1 answer
158 views

I have a C# project where I am trying to deploy a protection mechanism by registering a combination of the Hardware IDs. I am using the ManagementObjectSearcher Class for the same. Here are some of ...
codegasm's user avatar
  • 726
2 votes
1 answer
23k views

I would like to get the manufacturer name from JEDEC ids. Here is an example of some ids. JEDEC ID:7F 7F 7F 7F 7F 51 00 00 JEDEC ID:80 2C JEDEC ID:80 CE JEDEC ID:AD 00 00 00 00 00 00 00 JEDEC ID:CE ...
Andre Hofmeister's user avatar
2 votes
2 answers
2k views

If I create an ASP.net page, am I able to get the current users CPUID and BIOS serial number? Or is that not allowed because of security? I currently have a Visual Basic.net application that gets ...
user2230606's user avatar
2 votes
5 answers
7k views

Right now my algorithm based only on IMEI. And here is the problem: some devices doesn't have radio module, so they also doesn't have IMEI I need unique parameters ( CPU ID, flash ID, MAC etc) to ...
duck_ok's user avatar
  • 61
1 vote
1 answer
1k views

Is a way to gather hardware information to uniquely identify a certain device (not a category) that makes requests to a Java servlet ? I searched for this, but I don't think there is a method ( "user ...
Andrei F's user avatar
  • 4,401
2 votes
1 answer
150 views

I have written a filter driver for hard disks in Windows ( like DiskPerf of DDK ) and I need to get some information about device which my driver is attached to it, for example HardWareID. I use ...
CoyBit's user avatar
  • 1,622
-1 votes
3 answers
4k views

I want to get hardware information from a database server, which may not be in my private network, like the network card's MAC address, or the CPU ID. It has to work on MS SQL and MySQL. It is ...
Dirk's user avatar
  • 53
2 votes
2 answers
6k views

I'm creating a form in Access that processes millions of lines of data, and takes several hours (depending on your computer). I want to implement a feature that will read the computer specs, such as ...
Shubham's user avatar
  • 989
3 votes
3 answers
12k views

I am trying to use this code: public string GetCPUId() { string cpuInfo = String.Empty; string temp = String.Empty; ManagementClass mc = new ManagementClass("Win32_Processor"); ...
heresma's user avatar
  • 293
1 vote
3 answers
2k views

I want to grab a hardware ID with a java webapplet. Is this doable? If not, is there any web language I can do this with to help with a more secure authentication?
Rob's user avatar
  • 8,101
3 votes
1 answer
11k views

Can anyone tell me how to get USB serial number(Hardware ID) using VB.net?
Phoenix's user avatar
  • 31