How to list physical disks in windows? In order to obtain a list of "\.\PhysicalDrive0" available.
|
wmic is a very complete tool
provide a (too much) detailed list, for instance for less info
|
|||||||||
|
|
I've modified an open-source program called "dskwipe" in order to pull this disk information out of it. Dskwipe is written in C, and you can pull this function out of it. The binary and source are available here: dskwipe 0.3 has been released The returned information will look something like this:
|
|||
|
From your own code, use |
|||||
|
|
GetLogicalDrives() enumerates all mounted disk partitions, not physical drives. You can enumerate the drive letters with (or without) GetLogicalDrives, then call QueryDosDevice() to find out which physical drive the letter is mapped to. Alternatively, you can decode the information in the registry at HKEY_LOCAL_MACHINE\SYSTEM\MountedDevices. The binary data encodings there are not obvious, however. If you have a copy of Russinovich and Solomon's book Microsoft Windows Internals, this registry hive is discussed in Chapter 10. |
|||||
|
|
One way to do it:
This returns information of the physical location of a logical volume, as a In the simple case where the volume resides on a single physical drive, the physical drive number is available in |
|||||
|
|
The only sure shot way to do this is to call |
||||
|
|
|
I just ran across this in my RSS Reader today. I've got a cleaner solution for you. This example is in Delphi, but can very easily be converted to C/C++ (It's all Win32). Query all value names from the following registry location: HKLM\SYSTEM\MountedDevices One by one, pass them into the following function and you will be returned the device name. Pretty clean and simple! I found this code on a blog here.
|
|||||||||||||
|
|
I think this is a very good sample for your question, a little late but... its valid |
|||||||
|
|
Make a list of all letters in the US English Alphabet, skipping a & b. "CDEFGHIJKLMNOPQRSTUVWXYZ". Open each of those drives with |
|||
|
|