mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-03-25 13:36:39 +01:00
Add list-battery-status.ps1
This commit is contained in:
parent
32bd7c2edf
commit
d739604c79
21
Scripts/list-battery-status.ps1
Normal file
21
Scripts/list-battery-status.ps1
Normal file
@ -0,0 +1,21 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Lists the battery status
|
||||
.DESCRIPTION
|
||||
This PowerShell script lists the battery status.
|
||||
.EXAMPLE
|
||||
PS> ./list-battery-status
|
||||
.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
|
||||
}
|
Loading…
Reference in New Issue
Block a user