mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-15 12:34:25 +01:00
39 lines
1019 B
PowerShell
39 lines
1019 B
PowerShell
<#
|
|
.SYNOPSIS
|
|
Checks the battery status
|
|
.DESCRIPTION
|
|
This PowerShell script checks and prints the battery status.
|
|
.EXAMPLE
|
|
PS> ./check-battery
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
.NOTES
|
|
Author: Markus Fleschutz | License: CC0
|
|
#>
|
|
|
|
try {
|
|
if ($IsLinux) {
|
|
# TODO
|
|
} else {
|
|
Add-Type -Assembly System.Windows.Forms
|
|
$Details = [System.Windows.Forms.SystemInformation]::PowerStatus
|
|
$Status = "✅"
|
|
switch ($Details.PowerLineStatus) {
|
|
"Online" { $Power = "AC powered" }
|
|
"Offline" { $Power = "No AC power" }
|
|
}
|
|
if ($Details.BatteryChargeStatus -eq "NoSystemBattery") {
|
|
$Battery = "no system battery"
|
|
} else {
|
|
[int]$Percent = 100 * $Details.BatteryLifePercent
|
|
[int]$Remaining = $Details.BatteryLifeRemaining / 60
|
|
if ($Remaining -lt 30) { $Status = "⚠️" }
|
|
$Battery = "$Percent% battery life, $Remaining min. left"
|
|
}
|
|
Write-Host "$Status $Power, $Battery"
|
|
}
|
|
exit 0 # success
|
|
} catch {
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
exit 1
|
|
} |