PowerShell/Scripts/check-swap-space.ps1

29 lines
935 B
PowerShell
Raw Normal View History

2021-03-15 16:41:26 +01:00
#!/bin/powershell
<#
.SYNTAX ./check-swap-space.ps1 [<min-level>]
.DESCRIPTION checks the free swap space
2021-03-15 16:41:26 +01:00
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param([int]$MinLevel = 50) # minimum level in GB
2021-03-15 16:41:26 +01:00
try {
$Items = get-wmiobject -class "Win32_PageFileUsage" -namespace "root\CIMV2" -computername localhost
2021-03-15 16:41:26 +01:00
foreach ($Item in $Items) {
$Total = $Item.AllocatedBaseSize
$InUse = $Item.CurrentUsage
$FreeSpace = ($Total - $InUse)
2021-03-15 16:41:26 +01:00
}
if ($FreeSpace -lt $MinLevel) {
write-warning "Swap space has only $FreeSpace GB left to use! ($InUse GB out of $Total GB in use, minimum is $MinLevel GB)"
exit 1
}
write-host -foregroundColor green "OK - swap space has $FreeSpace GB left to use ($InUse GB out of $Total GB in use, minimum is $MinLevel GB)"
2021-03-15 16:41:26 +01:00
exit 0
} catch {
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}