mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 17:14:28 +01:00
23 lines
403 B
PowerShell
Executable File
23 lines
403 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 {
|
|
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
|
|
exit 1
|
|
}
|