mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-07 16:44:22 +01:00
26 lines
537 B
PowerShell
Executable File
26 lines
537 B
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
Lists the battery status
|
|
.DESCRIPTION
|
|
This PowerShell script lists the battery status.
|
|
.EXAMPLE
|
|
PS> ./list-battery-status.ps1
|
|
|
|
PowerLineStatus : Online
|
|
BatteryChargeStatus : NoSystemBattery
|
|
...
|
|
.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
|
|
}
|