1
0
mirror of https://github.com/fleschutz/PowerShell.git synced 2025-01-26 07:38:39 +01:00
PowerShell/Scripts/reboot.ps1
2021-10-16 16:50:10 +02:00

23 lines
458 B
PowerShell
Executable File

<#
.SYNOPSIS
Reboots the local computer (needs admin rights)
.DESCRIPTION
This script 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
}