Summary: Use Windows PowerShell to get a list of all volume drive letters and free space available.
How can I use Windows PowerShell to list all the drive letters and free space available?
Use Get-WMIObject and query win32_logicaldisk to show all drive letters including
network drives and CD ROMs:
GET-WMIOBJECT win32_logicaldisk
To view this as a table, add Format-Table:
GET-WMIOBJECT win32_logicaldisk | FORMAT-TABLE