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
1
answer
772
views
Get hardware information in flutter?
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 .
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 ...
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 ...
-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 ...
0
votes
0
answers
160
views
WMI values seems inconsistent
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 ...
-1
votes
2
answers
2k
views
Extracting HID from Windows INF File
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 ...
-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# ?
...
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 ...
1
vote
1
answer
2k
views
Getting Unique System ID on Mac using C#(Mono)
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 ...
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 ...
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 ...
0
votes
1
answer
785
views
Unique flash ID per computer
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 ...
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
1
answer
158
views
Error while fetching Hardware Info in Visual Studio 2010
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 ...
2
votes
1
answer
23k
views
How to find vendor name from JEDEC id?
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 ...
2
votes
2
answers
2k
views
ASP.net get hardware information
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 ...
2
votes
5
answers
7k
views
Is there any way to get unique hardware ID on android devices?
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 ...
1
vote
1
answer
1k
views
Can hardware information by obtained on a device that interacts with a Java servlet?
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 ...
2
votes
1
answer
150
views
IoGetDeviceProperly causes BSOD
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 ...
-1
votes
3
answers
4k
views
Get hardware information from a database server
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 ...
2
votes
2
answers
6k
views
Access VBA: Is there any way to get computer specs?
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 ...
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");
...
1
vote
3
answers
2k
views
Possible to grab hardware ID with Java applet?
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?
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?