2021-03-15 16:41:26 +01:00
|
|
|
#!/bin/powershell
|
|
|
|
<#
|
2021-03-15 16:58:14 +01:00
|
|
|
.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
|
|
|
|
#>
|
|
|
|
|
2021-03-15 16:58:14 +01:00
|
|
|
param([int]$MinLevel = 50) # minimum level in GB
|
2021-03-15 16:41:26 +01:00
|
|
|
|
|
|
|
try {
|
2021-03-15 16:58:14 +01:00
|
|
|
$Items = get-wmiobject -class "Win32_PageFileUsage" -namespace "root\CIMV2" -computername localhost
|
2021-03-15 16:41:26 +01:00
|
|
|
|
2021-03-15 16:58:14 +01:00
|
|
|
foreach ($Item in $Items) {
|
|
|
|
$Total = $Item.AllocatedBaseSize
|
2021-03-15 17:14:33 +01:00
|
|
|
$InUse = $Item.CurrentUsage
|
|
|
|
$FreeSpace = ($Total - $InUse)
|
2021-03-15 16:41:26 +01:00
|
|
|
}
|
2021-03-15 16:58:14 +01:00
|
|
|
if ($FreeSpace -lt $MinLevel) {
|
2021-03-15 17:14:33 +01:00
|
|
|
write-warning "Swap space has only $FreeSpace GB left to use! ($InUse GB out of $Total GB in use, minimum is $MinLevel GB)"
|
2021-03-15 16:58:14 +01:00
|
|
|
exit 1
|
|
|
|
}
|
2021-03-15 17:14:33 +01:00
|
|
|
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
|
|
|
|
}
|