mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-12 19:14:33 +01:00
23 lines
407 B
PowerShell
Executable File
23 lines
407 B
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
Halts the local computer (needs admin rights)
|
|
.DESCRIPTION
|
|
poweroff.ps1
|
|
.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
|
|
}
|