Jump to content
Tuts 4 You

How to show the printed serial number of an external usb hard drive using c#


ramzi2015

Recommended Posts

Posted

I need to show the printed serial number of an external usb hard drive using c# .
I have found many sources in "github" but the returned serial number is not correct. the only program that gave me the correct serial number is "CrystalDiskInfo" which is open source but written in c ++ which I do not understand.

Here is an example with "CrystalDiskInfo" with the correct result:

hdd6.png.9220ddb01df52a87b64d8ad3a597e0b7.png

Thanks for help

Posted (edited)
24 minutes ago, ramzi2015 said:

do not forget that it is an external Usb hard drive

You never mentioned that. :) USB enclosures are tricky, some of them they report their own serial numbers and some - serial numbers of the actual hard disk.
My WD Book enclosure works fine with the code I suggested earlier.

 

Try running in command prompt:

wmic diskdrive get Name,Model,SerialNumber,Size,Status

If you don't see the correct information there, then C# application will not be able to get it without writing a lot of specific code (like Crystal Disk Info).

Edited by kao
sometimes -> some of them
  • Like 1
Posted
39 minutes ago, kao said:

You never mentioned that. :) USB enclosures are tricky, some of them they report their own serial numbers and some - serial numbers of the actual hard disk.
My WD Book enclosure works fine with the code I suggested earlier.

 

Try running in command prompt:


wmic diskdrive get Name,Model,SerialNumber,Size,Status

If you don't see the correct information there, then C# application will not be able to get it without writing a lot of specific code (like Crystal Disk Info).

No luck, the serial number is still incorrect with the "wmic" command.  I think things are more complicated than I thought. So, I will try to use a third party tool to get the correct result.

Thank you anyway

  • 3 years later...
Posted

ManagementObjectSearcher can't get the correct searial number,sometime.

To obtain the correct disk name and serial number, the best approach is to use CrystalDiskInfo(https://github.com/hiyohiyo/CrystalDiskInfo) . However, CrystalDiskInfois a Windows software written in C++. As a result, it cannot be directly used in one's own project. Therefore, I wrapped CrystalDiskInfo into a DLL. Now, other languages or Windows applications can also accurately distinguish the disk serial number with the help of CrystalDiskInfo. I have open-sourced this project on GitHub. If you are interested in it, you can check it out and use it.

https://github.com/ftyszyx/CrystalDiskInfo_dll_lib

  • Thanks 1

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...