Update check-drive-space.ps1 and check-swap-space.ps1

This commit is contained in:
Markus Fleschutz 2021-03-15 16:58:14 +01:00
parent 73f0adffe6
commit 17d4943291
2 changed files with 18 additions and 13 deletions

View File

@ -1,12 +1,12 @@
#!/bin/powershell #!/bin/powershell
<# <#
.SYNTAX ./check-drive-space.ps1 [<drive>] [<warning-level>] .SYNTAX ./check-drive-space.ps1 [<drive>] [<min-level>]
.DESCRIPTION checks the given drive for free space left .DESCRIPTION checks the given drive for free space left
.LINK https://github.com/fleschutz/PowerShell .LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0 .NOTES Author: Markus Fleschutz / License: CC0
#> #>
param($Drive = "", [int]$WarningLevel = 50) # warning level in GB param($Drive = "", [int]$MinLevel = 50) # minimum level in GB
if ($Drive -eq "" ) { if ($Drive -eq "" ) {
$Drive = read-host "Enter drive to check" $Drive = read-host "Enter drive to check"
@ -16,11 +16,11 @@ try {
$FreeSpace = (get-psdrive $Drive) $FreeSpace = (get-psdrive $Drive)
[int]$FreeSpace = (($FreeSpace.free / 1024) / 1024) / 1024 [int]$FreeSpace = (($FreeSpace.free / 1024) / 1024) / 1024
if ($FreeSpace -lt $WarningLevel) { if ($FreeSpace -lt $MinLevel) {
write-warning "Drive $Drive has only $FreeSpace GB free space left! (warning level is < $WarningLevel GB)" write-warning "Drive $Drive has only $FreeSpace GB free space left! (minimum is $MinLevel GB)"
exit 1 exit 1
} }
write-host -foregroundColor green "OK - drive $Drive has $FreeSpace GB free space left (warning level is < $WarningLevel GB)" write-host -foregroundColor green "OK - drive $Drive has $FreeSpace GB free space left (minimum is $MinLevel GB)"
exit 0 exit 0
} catch { } catch {
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])" write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"

View File

@ -1,21 +1,26 @@
#!/bin/powershell #!/bin/powershell
<# <#
.SYNTAX ./check-swap-space.ps1 [<warning-level>] .SYNTAX ./check-swap-space.ps1 [<min-level>]
.DESCRIPTION checks the swap space .DESCRIPTION checks the free swap space
.LINK https://github.com/fleschutz/PowerShell .LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0 .NOTES Author: Markus Fleschutz / License: CC0
#> #>
param([int]$WarningLevel = 50) # warning level in GB param([int]$MinLevel = 50) # minimum level in GB
try { try {
$colItems = get-wmiobject -class "Win32_PageFileUsage" -namespace "root\CIMV2" -computername localhost $Items = get-wmiobject -class "Win32_PageFileUsage" -namespace "root\CIMV2" -computername localhost
foreach ($objItem in $colItems) { foreach ($Item in $Items) {
$allocate = $objItem.AllocatedBaseSize $Total = $Item.AllocatedBaseSize
$current = $objItem.CurrentUsage $Current = $Item.CurrentUsage
$FreeSpace = ($Total - $Current)
} }
write-host ($allocate - $current) if ($FreeSpace -lt $MinLevel) {
write-warning "Swap space has only $FreeSpace GB left to use! ($Current 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 ($Current GB out of $Total GB in use, minimum is $MinLevel GB)"
exit 0 exit 0
} catch { } catch {
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])" write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"