Summary: Use Windows PowerShell to list physical drives.
How can I use Windows PowerShell to get a list of physical drives?
Use Get-WMIObject, query win32_logicaldisk, and filter with the DriveType property:
GET-WMIOBJECT –query “SELECT * from win32_logicaldisk where DriveType = ‘3’”
To check the drives on a remote computer, add the –ComputerName parameter.
For example, to list all physical drives and their free space on a machine called “ContosoWS1”:
GET-WMIOBJECT –query “SELECT * from win32_logicaldisk where DriveType = ‘3’”
–computername “ContosoWS1”