vote up 0 vote down star

How to get the unique number (serial number/ID) for Processor (CPU), SCSI, Display, and IDE using C++ program other than WMI and asm code?

flag

0% accept rate
1  
You should at least add the platform. – gf Oct 14 at 14:41

2 Answers

vote up 0 vote down

On Windows you can get CPU info from the environment variable PROCESSOR** , you can parse the volume serial number from vol, the MAC address from route print

If you want to make it cross-platform (and if this is for software licensing) then an open source platform like Linux raises the problem to a whole new level anyway and requires a different approach. However you can still get a lot of the info by parsing the output from standard tools.

You really should consider WMI. In the old days, the BIOS would have been helpful but its all been replaced by the HAL.

CodeProject is always worth searching in cases like this.

How To Get Hardware Information

link|flag
vote up 0 vote down

Since you mention WMI, I assume you are working on Windows. Lookup GetVolumeInformation().

link|flag
this sounds like something for licensing software, GetVolumeInformation() return the volume serial that changes every time the disk is formatted and is trivial change in software. The manufacturer serial would be more helpful. – hapalibashi Oct 23 at 13:34

Your Answer

Get an OpenID
or

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