vote up 0 vote down star

I want to get the hardwired serial number from the hard disk but NOT using WMI. I tried using WMI code, and it doesn't work on my machine for sure. So is there any alternative in .NET for finding the Serial Number of a physical hard disk?

flag

53% accept rate
1  
Open up the box and have a look? – DrG Jul 24 at 10:51

2 Answers

vote up 1 vote down

This should help get started:

How to get Physical HDD serial number without WMI

Regarding your problem with WMI not returning data; Are you sure how to the right privileges to get data from WMI? You can use WMI Tools to check/fix this.

link|flag
I am running the code in the limited account mode. So I guess thats the problem. IS there any way I can elevate my privileges from within the limited account? – Xinxua Jul 24 at 12:03
I don't think so. Wouldn't that miss the whole point of assigning privileges to users? Or if you know the admin-password, you can use the "runas" command. – Espo Jul 24 at 12:06
vote up 0 vote down

You can use the:

GetVolumeInformation

Win32 API function to get this information, if you must avoid WMI. The linked page gives full the declaration signature (in both VB & C#) for the API function along with sample code.

link|flag
Is it not returning the Volume serial number? I want the device serial number which does not change with formatting – Xinxua Jul 24 at 11:17
1  
@Xinxua - Sorry, you're correct. It returns the volume rather than the device serial. I think the only way to achieve this without using WMI is to call down into low-level OS functions called by C++/unmanaged code (as per the other Espo's answer), however, if you're running with limited Windows account privileges and WMI is failing (probably because of this) then I doubt that calling a C++ dll's functions from a .NET app will work either unless you can run/execute code as a higher privilege, and that would require the relevant access/passwords to do so. – CraigTP Jul 25 at 7:43

Your Answer

Get an OpenID
or

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