PowerShell/Scripts/reboot.ps1
2021-08-29 17:50:03 +02:00

22 lines
388 B
PowerShell
Executable File

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