PowerTip: Use PowerShell to Get a List of All Volumes

Doctor Scripto

Summary: Use Windows PowerShell to get a list of all volume drive letters and free space available.

Hey, Scripting Guy! Question How can I use Windows PowerShell to list all the drive letters and free space available?

Hey, Scripting Guy! Answer 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

0 comments

Discussion is closed.

Feedback usabilla icon