Click here to Skip to main content
15,885,767 members
Articles / Programming Languages / C++

Searching for a Reliable Hardware ID

Rate me:
Please Sign up or sign in to vote.
4.93/5 (106 votes)
26 Mar 2020CPOL3 min read 285.3K   17.7K   212   143
How a computer can be identified in order to generate a unique ID
Many desktop application developers need to uniquely identify the computer on which their software is running. This article will show you how it can be done.

Introduction

Many desktop application developers need to uniquely identify the computer on which their software is running. Such identification must produce a unique data element which will be different per each computer and will reproduce the same ID on any given computer.  Note: there is also an excellent article focusing on the BIOS UUID. The article was written by .

The WMI Set of Classes 

Windows provides a set of classes that can be used for most hardware enumeration and identification tasks, which is named WMI or Windows Management Instrumentation. These are extensions to the Windows Driver Model (WDM).

WMI provides per instrumented component static information and dynamic notification about any changes. Most programming languages can be used to manage, locally and remotely, computers and servers, enumerating their instrumented components and alerted for changes that occur.

During my research, I came to the conclusion that if speed and reliability is important, it is better to access hardware via the Win32 API and not use WMI. I have experienced many delays and in some occasions, WMI failed to detect an element such as the CPU ID.

This article focuses on the direct approach for obtaining this data without using WMI.

Obtaining a Unique CPU ID

The solution that seems to be the best choice is to sample the CPU unique identification number (or CPU ID). However, there are several problems that makes it impossible to rely on reading the CPU ID.

To begin with, most CPUs with the exception of the old Pentium III, don't have a unique CPU Serial Number. Intel has removed this feature for privacy reasons.

It is still possible to generate a unique ID from the motherboard as a whole. That certainly works but the huge number of different types of motherboards and manufacturers makes it next to impossible to generate a unique ID that will cover all of them.

In fact, a French company named CPU ID, focuses in this field and spends a lot of resources in getting to learn each type of motherboard and CPU, in order to cover them all.

The following screenshot shows the details that can be collected for each machine.

Image 1

Their SDK can be downloaded here, and can be used both as a static library (per special request) or a DLL with any application developed. The bad news is that even the guys from CPUID say it is impossible to generate a unique hardware ID based on the CPU or the motherboard of a given machine.

MAC Address Based Hardware ID

The next choice for obtaining such a unique ID would be sampling the MAC address. To begin with, what is the "MAC address"? It stands for Media Access Control. The MAC address is 48 bits long (6 bytes). The GetMACAddress code sample explains how to obtain the MAC address.

However, there is one problem with this approach: the MAC address can be easily changed into a new one...

Hard Drive Serial Number

It seems that the only reliable solution for obtaining a machine ID would be using the serial number of the main Hard Drive. The second example, GetHDSerialNumber, shows how to obtain this ID. From my experience, this approach is the best one and the most reliable for generating a unique machine based hardware ID.

I would like to add that the serial number to be used, must be the one set by the manufacturer as opposed to the one set (and which can be changed) by the Operating System.

History

  • 28th January, 2015: Initial version

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
CEO Secured Globe, Inc.
United States United States
Michael Haephrati is a music composer, an inventor and an expert specializes in software development and information security, who has built a unique perspective which combines technology and the end user experience. He is the author of a the book Learning C++ , which teaches C++ 20, and was published in August 2022.

He is the CEO of Secured Globe, Inc., and also active at Stack Overflow.

Read our Corporate blog or read my Personal blog.





Comments and Discussions

 
GeneralMy vote of 5 Pin
Jeff Kibling31-Jan-12 3:29
Jeff Kibling31-Jan-12 3:29 
SuggestionAnd now for something completely different PinPopular
Nico Cuppen30-Jan-12 22:32
Nico Cuppen30-Jan-12 22:32 
GeneralRe: And now for something completely different Pin
Michael Haephrati1-Feb-12 9:42
professionalMichael Haephrati1-Feb-12 9:42 
GeneralRe: And now for something completely different Pin
Nico Cuppen1-Feb-12 10:11
Nico Cuppen1-Feb-12 10:11 
GeneralRe: And now for something completely different Pin
Michael Haephrati1-Feb-12 10:21
professionalMichael Haephrati1-Feb-12 10:21 
QuestionID for software protection Pin
Gernot Frisch30-Jan-12 21:08
Gernot Frisch30-Jan-12 21:08 
AnswerRe: ID for software protection Pin
Michael Haephrati30-Jan-12 21:18
professionalMichael Haephrati30-Jan-12 21:18 
GeneralRe: ID for software protection Pin
Gernot Frisch30-Jan-12 22:31
Gernot Frisch30-Jan-12 22:31 
I get the point.
Please also check, when you have a wifi MAC address, that it might not appear, when the adapter it powered off. The disk-serial is the easiest to do, but for virtual machines it might be cloned also.

Another idea is to write a registry key (random number) to HKLM.
GeneralRe: ID for software protection Pin
Michael Haephrati20-Feb-13 7:10
professionalMichael Haephrati20-Feb-13 7:10 
QuestionVirtual machine? Pin
Jens Kastensson30-Jan-12 20:32
Jens Kastensson30-Jan-12 20:32 
AnswerRe: Virtual machine? Pin
Michael Haephrati30-Jan-12 21:14
professionalMichael Haephrati30-Jan-12 21:14 
AnswerRe: Virtual machine? Pin
Niels Peter Gibe5-Mar-12 2:55
Niels Peter Gibe5-Mar-12 2:55 
GeneralRe: Virtual machine? Pin
Michael Haephrati20-Feb-13 10:26
professionalMichael Haephrati20-Feb-13 10:26 
QuestionJust a 5 cents to the topic Pin
Dmitry Zubrilin30-Jan-12 18:59
Dmitry Zubrilin30-Jan-12 18:59 
GeneralMy vote of 1 Pin
gxdata30-Jan-12 15:53
gxdata30-Jan-12 15:53 
GeneralMy vote of 5 Pin
Moshe Ben Shimon27-Jan-12 7:52
Moshe Ben Shimon27-Jan-12 7:52 
GeneralRe: My vote of 5 Pin
Rob Craig201227-Jan-12 8:15
Rob Craig201227-Jan-12 8:15 
GeneralMy vote of 5 Pin
Kate Willson27-Jan-12 7:48
Kate Willson27-Jan-12 7:48 
GeneralRe: My vote of 5 Pin
Michael Haephrati27-Jan-12 8:38
professionalMichael Haephrati27-Jan-12 8:38 
GeneralMy vote of 5 Pin
AI InfoSec26-Jan-12 4:17
AI InfoSec26-Jan-12 4:17 
QuestionRegarding your comments Pin
Michael Haephrati24-Jan-12 21:34
professionalMichael Haephrati24-Jan-12 21:34 
AnswerRe: Regarding My comments PinPopular
Emilio Garavaglia25-Jan-12 4:07
Emilio Garavaglia25-Jan-12 4:07 
GeneralRe: Regarding My comments Pin
Michael Haephrati25-Jan-12 4:12
professionalMichael Haephrati25-Jan-12 4:12 
GeneralMy vote of 5 Pin
Matan joice24-Jan-12 20:17
Matan joice24-Jan-12 20:17 
GeneralMy vote of 5 Pin
Perfect.Beat.MC24-Jan-12 11:08
Perfect.Beat.MC24-Jan-12 11:08 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.