At first it may seems it is very easy question and some body may be trying to give me advice to try Google, it may be so. But for me it is very hard I have try Google, Stack Overflow and can’t find any good solution.

Just want to get Serial number of Hard Disk or Hard Drive using C#

Please read carefully: serial number of Hard Disk, but not Serial number of Volume of Hard Disk (e.g. C, D, E, etc).

For getting serial no of volume of hard disk I have found solution on net and its work well but problem is with Getting serial number of Hard Disk.

Some body may trying to make this question as possible copy of below Stake Overflow question or may suggest link of that question. But it is not

And not any below question provides good solution for this problem in C#:

  1. How to get Hard-Disk SerialNumber in C# (no WMI)?
  2. How to retrieve HDD Firmware Serial number in .net?
  3. Hdd Serial Number
link|improve this question

77% accept rate
1  
I don't understand. You already provided a link to the answer. It's the article at the very bottom with the screenshot you liked so much. What's "boring" about C++? – Cody Gray Apr 15 '11 at 11:32
And more importantly, why do so many people need to find out the serial number of my hard drive? This question gets asked a lot (you found at least 3 duplicates already), considering there's absolutely no valid use case. The volume serial number is the only thing you could possibly care about; it's the only thing that matters. – Cody Gray Apr 15 '11 at 11:33
because i trying but could not implement it in C#..... and i using Serial no of Hard Disk for our application which only run in client PC if it found hard disk serial no of client PC in the Database of Executable of our application.....In SHORT it matches hard Disk Serial number one in Database and One getting at run time from client PC.........if found than and than our application will run..... – Pritesh Apr 15 '11 at 11:42
feedback

2 Answers

up vote 6 down vote accepted

This is the final solution:

Get Physical HDD Serial Number without WMI

write this much code:

DriveListEx diskInfo = new DriveListEx();
diskInfo.Load();
string serialNo = diskInfo[0].SerialNumber;

Don't forgot to add reference to the DriveInfoEx.dll.

link|improve this answer
1  
Why not simply translate the unmanaged C++ code from the DLL into managed C#? It's not doing anything that's impossible from a managed language. Then you eliminate the dependency on a third-party DLL. – Cody Gray Apr 20 '11 at 3:47
@ Cody Gray, but for me it is harder.......or i even don't try yet......... if you can then post it here i will accept your answer........... Thanks....... – Pritesh Apr 20 '11 at 4:19
Good Solution: But some times it is not working...i tried it on 4 pcs, it didn't work on 1st pc but worked when right clicked the EXE and selected "run as admin" option..worked fine for 2nd and 3rd pc...on 4th pc which was not having admin rights,it didnt work as exception occurred.. – Sangram Aug 12 '11 at 8:03
DriveInfoex.dll doesn't work windows 7 OS. it's throw the below Error System.IO.FileLoadException: Could not load file or assembly 'DriveInfoEx.dll' or one of its dependencies. This application has failed to start because the application configuration is incorrect. Reinstalling the application may fix this problem. (Exception from HRESULT: 0x800736B1) – Ramesh MLBSL Nov 7 '11 at 7:03
1  
Did you GAC'ed it? – Evgeniy Krechun Nov 7 '11 at 7:39
show 1 more comment
feedback

see this

http://www.codeproject.com/KB/system/GetHardwareInformation.aspx

just download demo from there and select "data storage" tab and select Win32_DiskDrive from this you will get information all the Disk drives(HardDisk) mention below and see one property "SerialNumber" after sectorpertrack and before signature property...

enter image description here

link|improve this answer
i have already tried it ti does not provide serial no Of Hard Disk........ – Pritesh Apr 15 '11 at 11:10
see my edited answer.. – jAX Apr 15 '11 at 11:24
you can see screen shot over belove link what happen when i running the application........you will not find "SerialNumber" field.... LINK:pritesharyan.weebly.com/question3.html – Pritesh Apr 15 '11 at 11:36
1  
@jAX, Ya......there may be some inner problem in my PC......... – Pritesh Apr 15 '11 at 11:47
1  
hmmm think so.. try it in diff PC and dnt forget to vote me dear.. – jAX Apr 15 '11 at 11:48
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

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