up vote 21 down vote favorite
11
share [g+] share [fb]

I need to write a function that generates an id that is unique for a given machine running a Windows OS.

Currently, I'm using WMI to query various hardware parameters and concatenate them together and hash them to derive the unique id. My question is, what are the suggested parameters I should use? Currently, I'm using a combination of bios\cpu\disk data to generate the unique id. And am using the first result if multiple results are there for each metric.

However, I ran into an issue where a machine that dual boots into 2 different Windows OS generates different site codes on each OS, which should ideally not happen.

For reference, these are the metrics I'm currently using:

Win32_Processor:UniqueID,ProcessorID,Name,Manufacturer,MaxClockSpeed
Win32_BIOS:Manufacturer
Win32_BIOS:SMBIOSBIOSVersion,IdentificationCode,SerialNumber,ReleaseDate,Version
Win32_DiskDrive:Model, Manufacturer, Signature, TotalHeads
Win32_BaseBoard:Model, Manufacturer, Name, SerialNumber
Win32_VideoController:DriverVersion, Name

And if multiple values are there for each

link|improve this question

65% accept rate
feedback

12 Answers

up vote 5 down vote accepted

Parse the SMBIOS yourself and hash it to an arbitrary length. See the PDF specification for all SMBIOS structures available.

To query the SMBIOS info from Windows you could use EnumSystemFirmwareEntries and GetSystemFirmwareTable.

IIRC, the "unique id" from the CPUID instruction is deprecated from P3 and newer.

link|improve this answer
6  
Note that these functions require at least Windows Vista, Windows XP Professional x64 Edition, Windows Server 2008 or Windows Server 2003 with SP1. – jcoffland Mar 21 '11 at 20:43
2  
A note to not do what I did, which was to call GetSystemFirmwareTable('RSMB'...); and hash the entire SMBIOSTableData buffer. It worked great until I ran into a workstation which wrote its cpu internal temperature to that table, meaning my unique id changed every few seconds. – Thomas Jan 5 at 19:12
feedback

I had the same problem and after a little research I decided the best would be to read HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Cryptography, as Agnus suggested. It is generated during OS installation and won't change unless you make another fresh OS install. Depending on the OS version it may contain the network adapter MAC address embedded (plus some other numbers, including random), or a pseudorandom number, the later for newer OS versions (after XP SP2, I believe, but not sure). If it's a pseudorandom theoretically it can be forged - if two machines have the same initial state, including real time clock. In practice, this will be rare, but be aware if you expect it to be a base for security that can be attacked by hardcore hackers.

Of course a registry entry can also be easily changed by anyone to forge a machine GUID, but what I found is that this would disrupt normal operation of so many components of Windows that in most cases no regular user would do it (again, watch out for hardcore hackers).

link|improve this answer
1  
Is this feasible? I mean that depending on this key alone is sufficient for a robust licensing system?? – Xinxua Jul 29 '09 at 7:47
Not at all. In my case, for instance, I use it for audit purposes only. Unfortunately there's no reliable DRM infrastructure in common PCs. A robust licensing system, as you mentioned, would need to make use of external (USB dongles) or non-standard (CPUID) sources for a unique number. – Fabio Ceconello Aug 6 '09 at 1:26
A major problem with HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Cryptography is that taking account of Registry virtualization (node VirtualStore) + Registry Wow64 process redirection (node wow6432node) it is hard to make sure to always get the same value depending ion the hosting process? – Patrick from NDepend team Nov 16 '10 at 13:07
1  
You can use the KEY_WOW64_64KEY flag to make sure you always get the "real" version of the registry key, I think. – Colen Jun 8 '11 at 21:58
If you clone an drive image this will stay the same. So this is not at all tampersafe and very unsecure. – bitbonk Jul 8 '11 at 11:34
show 2 more comments
feedback

What about just using the UniqeID of the processor?

link|improve this answer
5  
Isn't that a depreciated property these days? – Jakobud Jun 21 '10 at 3:19
2  
Perhaps he means 'deprecated'... CPU manufacturers started putting unique IDs in at one stage but due to backlash over privacy matters, they stopped again. So you will find that some have a unique ID but most modern CPUs don't. – TripleAntigen Aug 29 '11 at 13:29
feedback

I hate to be the guy who says, "you're just doing it wrong" (I always hate that guy ;) but...

Does it have to be repeatably generated for the unique machine? Could you just assign the identifier or do a public/private key? Maybe if you could generate and store the value, you could access it from both OS installs on the same disk?

You've probably explored these options and they doesn't work for you, but if not, it's something to consider.

If it's not a matter of user trust, you could just use MAC addresses.

link|improve this answer
MAC addresses won't work if the machine doesn't have a network card. – brian Jan 20 '09 at 19:54
1  
@Brian - do you really need a unique value to identify a computer that doesn't have a network card? Seems a pretty safe bet the machine has a card. – romandas Mar 20 '09 at 22:54
feedback

In my program I first check for Terminal Server and use the WTSClientHardwareId else the mac address of the local pc should be adequate.

If you really want to use the list of properties you provided leave out things like name and DriverVersion,Clockspeed,etc since it's possibly OS dependent. Try outputting the same info on both operating systems and leave out that which differs between.

link|improve this answer
feedback

look up CPUID for one option. There might be some issues with multi-CPU systems

link|improve this answer
feedback

Why not use the MAC address of your network card?

link|improve this answer
He didn't mention that all the comuter have a network card. – gizmo Sep 19 '08 at 5:38
7  
Mac address can be spoofed – PintSizedCat May 22 '09 at 11:26
feedback

Maybe cheating a little, but the MAC Address of a machines Ethernet adapter rarely changes without the motherboard changing these days.

link|improve this answer
A lot of manufacturer allows you to change them. This is very helpfull when working with clusters because some of the vendors gives you all the computer with the same MAC address (we ran into this issue a few years ago). – gizmo Sep 19 '08 at 5:39
feedback

Can you pull some kind of manufacturer serial number or service tag?

Our shop is a Dell shop, so we use the service tag which is unique to each machine to identify them. I know it can be queried from the BIOS, at least in Linux, but I don't know offhand how to do it in Windows.

link|improve this answer
feedback

You should look into using the MAC address on the network card (if it exists). Those are usually unique but can be fabricated. I've used software that generates its license file based on your network adapter MAC address, so it's considered a fairly reliable way to distinguish between computers.

link|improve this answer
No, they aren't. A lot of manufacturer allows you to change them. This is very helpfull when working with clusters because some of the vendors gives you all the computer with the same MAC address (we ran into this issue a few years ago). – gizmo Sep 19 '08 at 5:40
I stand corrected. – Kyle Cronin Sep 19 '08 at 5:43
feedback

For one of my applications, I either use the computer name if it is non-domain computer, or the domain machine account SID for domain computers. Mark russinovich talks about it in this blog post: Machine Sid

The final case where SID duplication would be an issue is if a distributed application used machine SIDs to uniquely identify computers. No Microsoft software does so and using the machine SID in that way doesn’t work just for the fact that all DC’s have the same machine SID. Software that relies on unique computer identities either uses computer names or computer Domain SIDs (the SID of the computer accounts in the Domain).

You can access the domain machine account sid via ldap or System.DirectoryServices.

link|improve this answer
feedback

Consider using a Global Unique Identifier (GUID)

Also see here for some Pros and Cons

link|improve this answer
1  
Your kidding right ? – Rushino Aug 24 '11 at 16:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.