PowerShell/Scripts/reboot.ps1
2021-09-27 10:09:45 +02:00

23 lines
405 B
PowerShell
Executable File

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