mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-01-23 14:18:38 +01:00
Update list-drives.ps1
This commit is contained in:
parent
f989a99a92
commit
8b6993561a
@ -2,14 +2,14 @@
|
||||
.SYNOPSIS
|
||||
list-drives.ps1
|
||||
.DESCRIPTION
|
||||
Lists all drives connected to the computer
|
||||
Lists all local drives.
|
||||
.EXAMPLE
|
||||
PS> ./list-drives
|
||||
|
||||
Name Root Used (GB) Free (GB)
|
||||
---- ---- --------- ---------
|
||||
C C:\ 76,14 35,05
|
||||
D D:\ 6648,12 744,16
|
||||
C C:\ 76,1 35,0
|
||||
D D:\ 6648,1 744,2
|
||||
.NOTES
|
||||
Author: Markus Fleschutz · License: CC0
|
||||
.LINK
|
||||
@ -17,7 +17,7 @@
|
||||
#>
|
||||
|
||||
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
|
||||
} catch {
|
||||
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
|
||||
|
Loading…
Reference in New Issue
Block a user