I want to read a hard disk's factory serial number, not the volume serial number from a Aava program or C or C++ if this isn't possible in Java.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You can use Win32_PhysicalMedia class with the SerialNumber property to obtain that. A quick Google search came up with this already written program to do exactly that. It works just like a SQL Query on a table. Thanks |
||||
|
|
|
Basically you need to access WMI (windows management interface) from Java. From quick googling try this solution. Or maybe this open source one. Check out this for Groovy based solution. |
||||
|
|