PowerShell/Scripts/reboot.ps1
2020-09-29 18:05:52 +00:00

12 lines
264 B
PowerShell
Executable File

#!/snap/bin/powershell
#
# Syntax: ./reboot.ps1
# Description: reboots the local computer, administrator rights are required
# Author: Markus Fleschutz
# Source: github.com/fleschutz/PowerShell
# License: CC0
#Requires -RunAsAdministrator
Restart-Computer
exit 0