2021-04-21 19:53:52 +02:00
|
|
|
|
<#
|
2021-04-07 15:17:49 +02:00
|
|
|
|
.SYNTAX check-drive-space.ps1 [<drive>] [<min-level>]
|
2021-03-22 20:10:18 +01:00
|
|
|
|
.DESCRIPTION checks the given drive for free space left
|
|
|
|
|
.LINK https://github.com/fleschutz/PowerShell
|
|
|
|
|
.NOTES Author: Markus Fleschutz / License: CC0
|
2021-02-26 11:06:01 +01:00
|
|
|
|
#>
|
|
|
|
|
|
2021-03-15 16:58:14 +01:00
|
|
|
|
param($Drive = "", [int]$MinLevel = 50) # minimum level in GB
|
2021-02-26 11:06:01 +01:00
|
|
|
|
|
2021-04-17 18:54:45 +02:00
|
|
|
|
if ($Drive -eq "" ) { $Drive = read-host "Enter drive to check" }
|
2021-02-26 11:06:01 +01:00
|
|
|
|
|
|
|
|
|
try {
|
2021-03-15 17:14:33 +01:00
|
|
|
|
$DriveDetails = (get-psdrive $Drive)
|
2021-03-20 15:51:03 +01:00
|
|
|
|
[int]$Free = (($DriveDetails.Free / 1024) / 1024) / 1024
|
|
|
|
|
[int]$Used = (($DriveDetails.Used / 1024) / 1024) / 1024
|
|
|
|
|
[int]$Total = ($Used + $Free)
|
2021-02-26 11:06:01 +01:00
|
|
|
|
|
2021-03-20 15:51:03 +01:00
|
|
|
|
if ($Free -lt $MinLevel) {
|
|
|
|
|
write-warning "Drive $Drive has only $Free GB left to use! ($Used GB out of $Total GB in use, minimum is $MinLevel GB)"
|
2021-02-27 10:50:58 +01:00
|
|
|
|
exit 1
|
|
|
|
|
}
|
2021-04-17 18:54:45 +02:00
|
|
|
|
"✔️ $Free GB left on drive $Drive ($Used GB of $Total GB used)"
|
2021-02-27 10:50:58 +01:00
|
|
|
|
exit 0
|
2021-02-26 11:06:01 +01:00
|
|
|
|
} catch {
|
|
|
|
|
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
|
|
|
exit 1
|
|
|
|
|
}
|