mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-05-02 06:34:37 +02:00
Update list-drives.ps1
This commit is contained in:
parent
f989a99a92
commit
8b6993561a
@ -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))"
|
||||||
|
Loading…
Reference in New Issue
Block a user