PowerShell/Scripts/poweroff.ps1
2021-10-16 16:50:10 +02:00

23 lines
455 B
PowerShell
Executable File

<#
.SYNOPSIS
Halts the local computer (needs admin rights)
.DESCRIPTION
This script halts the local computer. It needs admin rights.
.EXAMPLE
PS> ./poweroff
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
#Requires -RunAsAdministrator
try {
Stop-Computer
exit 0 # success
} catch {
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
exit 1
}