mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 17:14:28 +01:00
23 lines
383 B
PowerShell
Executable File
23 lines
383 B
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
poweroff.ps1
|
|
.DESCRIPTION
|
|
Halts the local computer (needs admin rights)
|
|
.EXAMPLE
|
|
PS> .\poweroff.ps1
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
.NOTES
|
|
Author: Markus Fleschutz / License: CC0
|
|
#>
|
|
|
|
#Requires -RunAsAdministrator
|
|
|
|
try {
|
|
Stop-Computer
|
|
exit 0
|
|
} catch {
|
|
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
exit 1
|
|
}
|