PowerShell/Scripts/check-drives.ps1

62 lines
1.9 KiB
PowerShell
Raw Normal View History

2021-12-03 10:12:56 +01:00
<#
.SYNOPSIS
2022-10-25 15:15:43 +02:00
Checks the drive space
2021-12-03 10:12:56 +01:00
.DESCRIPTION
2022-10-25 15:15:43 +02:00
This PowerShell script checks all drives for free space left.
.PARAMETER MinLevel
Specifies the minimum warning level (10 GB by default)
2021-12-03 10:12:56 +01:00
.EXAMPLE
PS> ./check-drives
2023-01-01 19:22:35 +01:00
Drive C uses 87GB of 249GB
2021-12-03 10:12:56 +01:00
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
2022-06-09 16:30:28 +02:00
Author: Markus Fleschutz | License: CC0
2021-12-03 10:12:56 +01:00
#>
param([int]$MinLevel = 10) # 10 GB minimum
2022-10-09 12:34:06 +02:00
function Bytes2String { param([int64]$Bytes)
if ($Bytes -lt 1000) { return "$Bytes bytes" }
$Bytes /= 1000
if ($Bytes -lt 1000) { return "$($Bytes)KB" }
$Bytes /= 1000
if ($Bytes -lt 1000) { return "$($Bytes)MB" }
$Bytes /= 1000
if ($Bytes -lt 1000) { return "$($Bytes)GB" }
$Bytes /= 1000
if ($Bytes -lt 1000) { return "$($Bytes)TB" }
$Bytes /= 1000
if ($Bytes -lt 1000) { return "$($Bytes)PB" }
$Bytes /= 1000
if ($Bytes -lt 1000) { return "$($Bytes)EB" }
}
2021-12-03 10:12:56 +01:00
try {
Write-Progress "⏳ Querying drives..."
2021-12-03 10:12:56 +01:00
$Drives = Get-PSDrive -PSProvider FileSystem
foreach($Drive in $Drives) {
$ID = $Drive.Name
$Details = (Get-PSDrive $ID)
[int64]$Free = $Details.Free
[int64]$Used = $Details.Used
[int64]$Total = ($Used + $Free)
2021-12-03 10:12:56 +01:00
2022-10-25 15:15:43 +02:00
if ($Total -eq 0) {
2022-12-28 18:30:28 +01:00
Write-Host "✅ Drive $ID is empty"
} elseif ($Free -eq 0) {
2022-12-28 18:30:28 +01:00
Write-Host "⚠️ Drive $ID with $(Bytes2String $Total) is full!"
2021-12-06 19:21:15 +01:00
} elseif ($Free -lt $MinLevel) {
2022-12-28 18:30:28 +01:00
Write-Host "⚠️ Drive $ID with $(Bytes2String $Total) is nearly full ($(Bytes2String $Free) free)!"
2022-10-25 15:15:43 +02:00
} elseif ($Used -lt $Free) {
2022-12-28 18:30:28 +01:00
Write-Host "✅ Drive $ID uses $(Bytes2String $Used) of $(Bytes2String $Total)"
2021-12-03 10:12:56 +01:00
} else {
2022-12-28 18:30:28 +01:00
Write-Host "✅ Drive $ID has $(Bytes2String $Free) of $(Bytes2String $Total) free"
2021-12-03 10:12:56 +01:00
}
}
Write-Progress -completed "Querying drives finished."
2021-12-03 10:12:56 +01:00
exit 0 # success
} catch {
2022-04-13 12:06:32 +02:00
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2021-12-03 10:12:56 +01:00
exit 1
2022-10-25 15:15:43 +02:00
}