Tagged Questions
The hardware-id tag has no wiki summary.
15
votes
2answers
6k views
How to fast get Hardware-ID in C#?
I need in my license Program use hardware id ,I tried use WMI,but it still slow .
I need Cpu,HDD,Motherboard info.
7
votes
6answers
4k views
Unique hardware ID in Mac OS X
Mac OS X development is a fairly new animal for me, and I'm in the process of porting over some software. For software licensing and registration I need to be able to generate some kind of hardware ...
4
votes
3answers
1k views
How to get hardware information in Windows using C++?
How to get hardware information (for example cpuId, biosId, diskId, baseId and videoId) in c++?
Can anyone give me an example visual studio project for this?
4
votes
7answers
969 views
Uniquely identify PC based on software/hardware
For a requirement to generate per-PC license keys, I need some code which will return a stable and (near) unique key on any PC. It doesn't have to be guaranteed unique, but close. It does need to be ...
3
votes
7answers
782 views
Generating ID unique to a particular computer [closed]
Possible Duplicate:
Reliable way of generating unique hardware ID
Am trying to generate an ID that will be unique to a particular computer. The ID will not be generated randomly. It will be ...
3
votes
2answers
386 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 ...
3
votes
2answers
652 views
HWID locking a PHP page?
Currently I sell a program, that accesses my webpage. The program is HWID (Hard Ware ID) locked, and the only reason I use the program to access the webpage instead of direct access via a webbrowser, ...
2
votes
2answers
179 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 ...
2
votes
2answers
81 views
How to detect if my website is relayed through the hosts file or an application
I have an application that connect to my website to verify user data (hardware id), but if somebody puts a line in the windows hosts file, it could be relayed to another site. Then it gets bad data ...
2
votes
1answer
896 views
Get USB serial number using VB.net?
Can anyone tell me how to get USB serial number(Hardware ID) using VB.net?
1
vote
0answers
21 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
vote
2answers
226 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
1answer
318 views
Get printer id in java
I have edited the question "How can I get the serial no. or mac address of a printer dynamically through java." to "How can I get the id of a printer dynamically through java."
1
vote
3answers
596 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?
1
vote
1answer
221 views
Alternative to MAC Address for tying software to hardware?
Any good alternatives to tying software activation to a hardware piece on the machine beside using the MAC address? Using hard drive serial numbers will not work as they are not always available. ...
1
vote
5answers
542 views
Help with Hardware ID
I'm using C# and .NET 2.0. My app needs some way to check the different users so I'll use hardware id, but I saw that I can use only:
mac address - easily changeable and not everybody have it // NO
...
1
vote
4answers
3k views
Reliable way of generating unique hardware ID
Question: I have to come up with unique ID for each networked client, such that:
it (ID) should persist once client software is installed on target computer, and should continue to persist if ...
1
vote
2answers
915 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, ...
1
vote
4answers
496 views
Prevent users from being able to access a webpage via web browser?
My friend and I are working on a program. This program is going to submit GET data to our webpage. However, we don't want users accessing the webpage any other way than the program. We can prevent ...
0
votes
1answer
96 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 ...
0
votes
1answer
169 views
Get the information about the USB device inserted
I've managed to check if a USB device is inserted through WM_DEVICECHANGE.
case WM_DEVICECHANGE:
{
PDEV_BROADCAST_HDR lpdb = (PDEV_BROADCAST_HDR)lParam;
switch(wParam)
{
case ...
0
votes
3answers
903 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");
...
0
votes
1answer
213 views
Best and modern ways of licensing a software
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 ...
0
votes
1answer
668 views
How to using Mono for windows to Access WMI to get hardware Id?
Recently,I need run my winforms App on mono for windows platform,But i am using WMI to get MAC address and CPU ID in my original code,switch to Mono for Windows,it does not working.
I found that ...
-3
votes
3answers
56 views
Get Hardwareinformation of the Databaseserver
I want to receive Hardwareinformation of a Database-server, which also may not be in my private Network, like the Networkcard Macadress, or the CPU ID? It has to work on MS SQL and MySQL.
It is ...