1
0
mirror of https://github.com/fleschutz/PowerShell.git synced 2025-04-03 22:10:51 +02:00

Update check-swap-space.ps1

This commit is contained in:
Markus Fleschutz 2023-08-05 10:32:19 +02:00
parent 51487dbaec
commit ba00df2878

View File

@ -7,7 +7,7 @@
Specifies the minimum level (10 GB by default) Specifies the minimum level (10 GB by default)
.EXAMPLE .EXAMPLE
PS> ./check-swap-space.ps1 PS> ./check-swap-space.ps1
Swap space uses 63GB of 1856GB Swap space uses 122MB (10%) of 1GB
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES .NOTES
@ -53,7 +53,7 @@ try {
Write-Output "✅ Swap space with $(MB2String $Total) reserved" Write-Output "✅ Swap space with $(MB2String $Total) reserved"
} elseif ($Used -lt $Free) { } elseif ($Used -lt $Free) {
[int]$Percent = ($Used * 100) / $Total [int]$Percent = ($Used * 100) / $Total
Write-Output "✅ Swap space uses $(MB2String $Used) or $($Percent)% of $(MB2String $Total)" Write-Output "✅ Swap space uses $(MB2String $Used) ($($Percent)%) of $(MB2String $Total)"
} else { } else {
Write-Output "✅ Swap space has $(MB2String $Free) of $(MB2String $Total) free" Write-Output "✅ Swap space has $(MB2String $Free) of $(MB2String $Total) free"
} }