diff --git a/Scripts/list-battery-status.ps1 b/Scripts/list-battery-status.ps1 new file mode 100644 index 00000000..4d7cae63 --- /dev/null +++ b/Scripts/list-battery-status.ps1 @@ -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 +} \ No newline at end of file