2023-10-31 12:05:32 +01:00
|
|
|
|
<#
|
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
|
2023-08-16 08:04:14 +02:00
|
|
|
|
This PowerShell script queries the free space of all drives and prints it.
|
|
|
|
|
.PARAMETER minLevel
|
2022-10-09 19:40:51 +02:00
|
|
|
|
Specifies the minimum warning level (10 GB by default)
|
2021-12-03 10:12:56 +01:00
|
|
|
|
.EXAMPLE
|
2023-08-06 18:13:42 +02:00
|
|
|
|
PS> ./check-drives.ps1
|
2024-01-27 09:55:14 +01:00
|
|
|
|
✅ Drive C: uses 49% of 1TB · 512GB free
|
|
|
|
|
✅ Drive D: uses 84% of 4TB · 641GB free
|
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
|
|
|
|
#>
|
|
|
|
|
|
2023-08-21 23:20:29 +02:00
|
|
|
|
param([int64]$minLevel = 10) # 10 GB minimum
|
2022-10-09 12:34:06 +02:00
|
|
|
|
|
2023-08-16 08:04:14 +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
|
|
|
|
|
return "$($bytes)PB"
|
2022-11-06 22:06:55 +01:00
|
|
|
|
}
|
|
|
|
|
|
2021-12-03 10:12:56 +01:00
|
|
|
|
try {
|
2023-10-27 12:06:06 +02:00
|
|
|
|
Write-Progress "Querying drives..."
|
2023-08-16 08:04:14 +02:00
|
|
|
|
$drives = Get-PSDrive -PSProvider FileSystem
|
2023-08-21 23:20:29 +02:00
|
|
|
|
$minLevel *= 1000 * 1000 * 1000
|
2023-10-27 12:06:06 +02:00
|
|
|
|
Write-Progress -completed " "
|
2023-08-16 08:04:14 +02:00
|
|
|
|
foreach($drive in $drives) {
|
|
|
|
|
$details = (Get-PSDrive $drive.Name)
|
|
|
|
|
if ($IsLinux) { $name = $drive.Name } else { $name = $drive.Name + ":" }
|
|
|
|
|
[int64]$free = $details.Free
|
|
|
|
|
[int64]$used = $details.Used
|
|
|
|
|
[int64]$total = ($used + $free)
|
2021-12-03 10:12:56 +01:00
|
|
|
|
|
2023-08-16 08:04:14 +02:00
|
|
|
|
if ($total -eq 0) {
|
|
|
|
|
Write-Host "✅ Drive $name is empty"
|
|
|
|
|
} elseif ($free -eq 0) {
|
2023-08-16 08:12:18 +02:00
|
|
|
|
Write-Host "⚠️ Drive $name with $(Bytes2String $total) is full"
|
2023-08-16 08:04:14 +02:00
|
|
|
|
} elseif ($free -lt $minLevel) {
|
|
|
|
|
Write-Host "⚠️ Drive $name with $(Bytes2String $total) is nearly full, $(Bytes2String $free) free"
|
2021-12-03 10:12:56 +01:00
|
|
|
|
} else {
|
2023-08-16 08:04:14 +02:00
|
|
|
|
[int]$percent = ($used * 100) / $total
|
2024-01-27 09:55:14 +01:00
|
|
|
|
Write-Host "✅ Drive $name uses $percent% of $(Bytes2String $total) · $(Bytes2String $free) free"
|
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
|
2023-08-05 16:20:52 +02:00
|
|
|
|
}
|