PowerShell/Scripts/list-drives.ps1
2021-09-24 17:19:49 +02:00

21 lines
525 B
PowerShell
Executable File

<#
.SYNOPSIS
list-drives.ps1
.DESCRIPTION
Lists all drives connected to the computer
.EXAMPLE
PS> ./list-drives
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
try {
Get-PSDrive -PSProvider FileSystem | format-table -property Name,Root,@{n="Used (GB)";e={[math]::Round($_.Used/1GB,2)}},@{n="Free (GB)";e={[math]::Round($_.Free/1GB,2)}}
exit 0
} catch {
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
exit 1
}