PowerShell/Scripts/reboot.ps1
2021-09-11 11:37:22 +02:00

23 lines
389 B
PowerShell
Executable File

<#
.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
#>
#Requires -RunAsAdministrator
try {
Restart-Computer
exit 0
} catch {
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}