PowerShell/scripts/list-battery-status.ps1

26 lines
537 B
PowerShell
Raw Normal View History

2023-10-31 12:33:36 +01:00
<#
2022-11-22 08:24:11 +01:00
.SYNOPSIS
Lists the battery status
.DESCRIPTION
This PowerShell script lists the battery status.
.EXAMPLE
2023-08-06 21:35:36 +02:00
PS> ./list-battery-status.ps1
PowerLineStatus : Online
BatteryChargeStatus : NoSystemBattery
...
2022-11-22 08:24:11 +01:00
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
try {
Add-Type -Assembly System.Windows.Forms
[System.Windows.Forms.SystemInformation]::PowerStatus
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
2023-08-06 21:35:36 +02:00
}