Update list-drives.ps1

This commit is contained in:
Markus Fleschutz 2021-10-03 20:56:22 +02:00 committed by GitHub
parent f989a99a92
commit 8b6993561a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,14 +2,14 @@
.SYNOPSIS .SYNOPSIS
list-drives.ps1 list-drives.ps1
.DESCRIPTION .DESCRIPTION
Lists all drives connected to the computer Lists all local drives.
.EXAMPLE .EXAMPLE
PS> ./list-drives PS> ./list-drives
Name Root Used (GB) Free (GB) Name Root Used (GB) Free (GB)
---- ---- --------- --------- ---- ---- --------- ---------
C C:\ 76,14 35,05 C C:\ 76,1 35,0
D D:\ 6648,12 744,16 D D:\ 6648,1 744,2
.NOTES .NOTES
Author: Markus Fleschutz · License: CC0 Author: Markus Fleschutz · License: CC0
.LINK .LINK
@ -17,7 +17,7 @@
#> #>
try { 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)}} Get-PSDrive -PSProvider FileSystem | format-table -property Name,Root,@{n="Used (GB)";e={[math]::Round($_.Used/1GB,1)}},@{n="Free (GB)";e={[math]::Round($_.Free/1GB,1)}}
exit 0 # success exit 0 # success
} catch { } catch {
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))" "⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"