Reputation:
Is there any Unique ID or OEM (Original Equipment Manufacturer) number for Motherboard, if it is there , how can i get it thru vc++ programming? any hint or help is appreciated.
Upvotes: 1
Views: 9654
Reputation: 76001
As @Mitch mentioned, you can use the WMI Win32_BaseBoard
class, SerialNumber
property. Alternatively, for processor ID you can use the Win32_Processor
class, ProcessorId
property.
Upvotes: 2
Reputation: 300559
In this sample, replace the Win32_OperatingSystem
and Name
in the code to the ones you are interested in (i.e. Win32_BaseBoard
and SerialNumber
for motherboard serial).
This WMI FAQ might be of interest: Secrets of Windows Management Instrumentation: Troubleshooting and Tips
Upvotes: 5