From 8b6993561ae1209977eb65725738784bafaec851 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Sun, 3 Oct 2021 20:56:22 +0200 Subject: [PATCH] Update list-drives.ps1 --- Scripts/list-drives.ps1 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Scripts/list-drives.ps1 b/Scripts/list-drives.ps1 index 8f22f8d2..0eb11d79 100755 --- a/Scripts/list-drives.ps1 +++ b/Scripts/list-drives.ps1 @@ -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))"