2022-11-30 08:42:00 +01:00
|
|
|
|
<#
|
|
|
|
|
.SYNOPSIS
|
2023-01-21 19:09:01 +01:00
|
|
|
|
Checks the battery
|
2022-11-30 08:42:00 +01:00
|
|
|
|
.DESCRIPTION
|
2023-01-21 19:09:01 +01:00
|
|
|
|
This PowerShell script queries the status of the system battery and prints it.
|
2022-11-30 08:42:00 +01:00
|
|
|
|
.EXAMPLE
|
|
|
|
|
PS> ./check-battery
|
2023-08-05 12:10:16 +02:00
|
|
|
|
⚠️ Battery 9% low, 54 min remaining
|
2022-11-30 08:42:00 +01:00
|
|
|
|
.LINK
|
|
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
|
.NOTES
|
|
|
|
|
Author: Markus Fleschutz | License: CC0
|
|
|
|
|
#>
|
|
|
|
|
|
|
|
|
|
try {
|
2022-11-30 16:45:11 +01:00
|
|
|
|
if ($IsLinux) {
|
2023-01-21 19:09:01 +01:00
|
|
|
|
$Reply = "✅ AC powered" # TODO, just guessing :-)
|
2022-11-30 16:45:11 +01:00
|
|
|
|
} else {
|
|
|
|
|
Add-Type -Assembly System.Windows.Forms
|
|
|
|
|
$Details = [System.Windows.Forms.SystemInformation]::PowerStatus
|
2023-01-21 19:09:01 +01:00
|
|
|
|
[int]$Percent = 100 * $Details.BatteryLifePercent
|
|
|
|
|
[int]$Remaining = $Details.BatteryLifeRemaining / 60
|
2023-08-05 10:52:16 +02:00
|
|
|
|
if ($Details.PowerLineStatus -eq "Online") {
|
2023-01-21 19:09:01 +01:00
|
|
|
|
if ($Details.BatteryChargeStatus -eq "NoSystemBattery") {
|
|
|
|
|
$Reply = "✅ AC powered"
|
2023-08-05 10:52:16 +02:00
|
|
|
|
} elseif ($Percent -ge 95) {
|
|
|
|
|
$Reply = "✅ Battery fully charged ($Percent%)"
|
2023-01-21 19:09:01 +01:00
|
|
|
|
} else {
|
2023-08-05 10:52:16 +02:00
|
|
|
|
$Reply = "✅ Battery charging... ($Percent%)"
|
2023-01-21 19:09:01 +01:00
|
|
|
|
}
|
2023-08-05 10:52:16 +02:00
|
|
|
|
} else { # must be offline
|
2023-08-05 11:59:15 +02:00
|
|
|
|
if ($Remaining -le 5) {
|
|
|
|
|
$Reply = "⚠️ Battery at $Percent%, ONLY $Remaining MIN remaining"
|
|
|
|
|
} elseif ($Remaining -le 30) {
|
|
|
|
|
$Reply = "⚠️ Battery at $Percent%, only $Remaining min remaining"
|
2023-08-05 12:10:16 +02:00
|
|
|
|
} elseif ($Percent -lt 10) {
|
|
|
|
|
$Reply = "⚠️ Battery $Percent% low, $Remaining min remaining"
|
2023-08-05 11:59:15 +02:00
|
|
|
|
} elseif ($Percent -ge 80) {
|
2023-08-05 10:52:16 +02:00
|
|
|
|
$Reply = "✅ Battery $Percent% full, $Remaining min remaining"
|
2023-01-21 19:09:01 +01:00
|
|
|
|
} else {
|
2023-08-05 11:59:15 +02:00
|
|
|
|
$Reply = "✅ Battery at $Percent%, $Remaining min remaining"
|
2023-01-21 19:09:01 +01:00
|
|
|
|
}
|
2022-12-19 19:33:32 +01:00
|
|
|
|
}
|
2022-11-30 08:42:00 +01:00
|
|
|
|
}
|
2023-08-05 10:52:16 +02:00
|
|
|
|
Write-Output $Reply
|
2022-11-30 08:42:00 +01:00
|
|
|
|
exit 0 # success
|
|
|
|
|
} catch {
|
|
|
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
|
|
|
exit 1
|
|
|
|
|
}
|