August 28th, 2013

PowerTip: Use PowerShell to Get a List of All Volumes

Doctor Scripto
Scripter

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

Author

The "Scripting Guys" is a historical title passed from scripter to scripter. The current revision has morphed into our good friend Doctor Scripto who has been with us since the very beginning.

0 comments

Discussion are closed.

Feedback