PowerShell/Scripts/check-drives.ps1

39 lines
1.0 KiB
PowerShell
Raw Normal View History

2021-12-03 10:12:56 +01:00
<#
.SYNOPSIS
2022-06-09 16:30:28 +02:00
Checks the free space of all drives
2021-12-03 10:12:56 +01:00
.DESCRIPTION
2022-01-29 12:47:46 +01:00
This PowerShell script checks all drives for free space left (20 GB by default).
.PARAMETER MinLevel
Specifies the minimum warning level (10 GB by default)
2021-12-03 10:12:56 +01:00
.EXAMPLE
PS> ./check-drives
.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
2021-12-03 10:12:56 +01:00
try {
$Drives = Get-PSDrive -PSProvider FileSystem
foreach($Drive in $Drives) {
$DriveDetails = (Get-PSDrive $Drive.Name)
[int]$Free = (($DriveDetails.Free / 1024) / 1024) / 1024
[int]$Used = (($DriveDetails.Used / 1024) / 1024) / 1024
[int]$Total = ($Used + $Free)
2021-12-06 19:21:15 +01:00
if ($Total -eq "0") {
"✅ Drive $($Drive.Name) is empty."
2021-12-06 19:21:15 +01:00
} elseif ($Free -lt $MinLevel) {
"⚠️ Drive $($Drive.Name) has only $Free GB left to use! $Used of $Total GB is in use."
2021-12-03 10:12:56 +01:00
} else {
"✅ Drive $($Drive.Name) has $($Free) GB left, $($Total) GB total."
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
}