62 questions
1
vote
1
answer
34
views
Windows.System.Profile.HardwareIdentification.GetPackageSpecificToken throws exception
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....
1
vote
0
answers
968
views
Did someone managed to use the Android ID attestation
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 ...
1
vote
1
answer
917
views
How can I determine the generation/codename of an AMD GPU in Linux?
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-...
1
vote
1
answer
2k
views
Generate the same computer hardware id. (CHID) like computerhardwareids.exe from Windows SDK
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 ...
0
votes
1
answer
105
views
How to get a unique Android device identificator in Flutter
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 ...
1
vote
0
answers
99
views
How to get MacBook's "(1P) Part ID" programatically in swift
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 ...
-2
votes
1
answer
2k
views
Is there a way to get a users Hardware-ID in C#?
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 ...
4
votes
3
answers
11k
views
Different disk serial number result from GetVolumeInformation()
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 ...
8
votes
2
answers
20k
views
Getting the motherboard's serial number
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 ...
3
votes
3
answers
12k
views
Getting CPU ID on virtual machine
I am trying to use this code:
public string GetCPUId()
{
string cpuInfo = String.Empty;
string temp = String.Empty;
ManagementClass mc = new ManagementClass("Win32_Processor");
...
10
votes
2
answers
7k
views
How to identify a Mac System uniquely
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 ...
-1
votes
1
answer
1k
views
How make Own license-key in CSharp
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# ?
...
1
vote
0
answers
142
views
Is it possible to read and concatenate unique hardarwe ID of STM32F429ZI microcontroller connecting with any of the Hardarwe which has unique ID?
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 ...
0
votes
2
answers
2k
views
How to get harddrive serial number in C or asm without wmi
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 ...
4
votes
1
answer
39k
views
Generate Activation Key From Hardware ID
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 ...
3
votes
2
answers
4k
views
List of ios device name
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,...
1
vote
0
answers
210
views
Get device make/model from disc drive, hard drive, etc
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 ...
3
votes
1
answer
11k
views
Get USB serial number using VB.net?
Can anyone tell me how to get USB serial number(Hardware ID) using VB.net?
6
votes
4
answers
1k
views
Translate Apple's model identifiers (MacBookPro5,1) to user-friendly names?
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 ...
0
votes
1
answer
2k
views
How to generate unique hardware id on windows
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 ...
0
votes
2
answers
1k
views
Java Store UUID
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 ...
1
vote
2
answers
11k
views
What is a hardware-id?
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, ...
3
votes
2
answers
2k
views
How to find motherboard info using CPUID?
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 ...
1
vote
1
answer
2k
views
Best and modern ways of licensing a software [closed]
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 ...
3
votes
1
answer
1k
views
Python per-seat license protection
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 ...