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
0 answers
968 views

I am testing the android Key & Id attestation on several devices (phones & latest chromecast) with that sample code : https://github.com/vvb2060/KeyAttestation. While the Key attestation works ...
kode48's user avatar
  • 11
1 vote
1 answer
917 views

I want to detect the AMD GPU generation in Python code. My case is that to run specific application (DaVinci Resolve), it is required to use AMDGPU-PRO drivers for GPU cards before Vega. And AMDGPU-...
Ashark's user avatar
  • 839
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
0 votes
1 answer
105 views

For my app we need a unique device id, to detect which devices was already assigned (used) to customer and which is not assigned (clean) and ready to assign The problem is Android 10 and above ...
Bohdan Ilkiv'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
-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
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
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
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
10 votes
2 answers
7k views

I want to identify my mac system uniquely via code. I find the Hardware UUID in my About this Mac. So how to programmatically access the unique uuid from MAc OS X. Kindly provide me if there are any ...
Kakey's user avatar
  • 4,044
-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
1 vote
0 answers
142 views

I Need to read the unique ID from the STM32F429 microcontroller and also read the ID from any of the Hardware device by connecting it to STM32F microcontroller(eg- sensors or any device which has ...
Sachin gowda's user avatar
0 votes
2 answers
2k views

how to get harddrive serial number(not the volume # wich change at each reinstall of windows) in C or asm, without wmi (cause wmi required admin right). Any clue would be helpfull cause right now i ...
user2101247's user avatar
4 votes
1 answer
39k views

I am trying to implement Hardware locked Licensing.I found the following code from codeproject that generates hardware id(Machine ID) This code generates Hardware Key using System; using ...
user2614235's user avatar
3 votes
2 answers
4k views

i have used this function in my app for return the model name of my device and work very well, but how i can find a complete list of the returned value for this function (es for iphone3,3gs,4s,ipad,...
AleMal's user avatar
  • 2,127
1 vote
0 answers
210 views

In Python 2, I'm looking to get the make/model of a device, such as an Ethernet card, hard drive, CD/DVD/BD drive, etc. I have no idea where to start, and the closest thing a Google search can come up ...
Yeniaul Adrianad's user avatar
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
6 votes
4 answers
1k views

Does Mac OS X have API that translates Apple's model identifiers (the kind found in plists and APIs, e.g., "MacBookPro5,1") to user-friendly marketing names of these devices ("Unibody MacBook Pro Late ...
Kornel's user avatar
  • 101k
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
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
1 vote
2 answers
11k views

Some forums that I regularly visit sell premium programs, and to prevent them from being leaked they use hardware-id authentication. That is, first they send you a program to run to grab your HWID, ...
Rob's user avatar
  • 8,101
3 votes
2 answers
2k views

I am trying to develop a C function for getting some motherboard info (name, id, etc.) but I can't find where these info are stored. I had a look at CPUID but I could't find anything related to the ...
limp's user avatar
  • 939
1 vote
1 answer
2k views

What is the best way of connecting some installed software with a certain computer via internet? I guess each install package (disk) should have its unique serial number. And the serial number should ...
Narek's user avatar
  • 40.2k
3 votes
1 answer
1k views

I would like to create a per-seat licensevalidator for my python application. The python code is compiled. The goal is to prevent the costumer from sharing the application across his company. Basic ...
Friedrich's user avatar
  • 645