PowerShell/reboot.ps1
Markus Fleschutz d8a596061e Added test.ps1
2020-05-01 09:44:56 +00:00

9 lines
268 B
PowerShell
Executable File

# PowerShell Script to Reboot the Local Computer
# ----------------------------------------------
# Author: Markus Fleschutz
# Source: github.com/fleschutz/PowerShell
# NOTE: Reboots the local computer! Administrator rights might be needed.
Restart-Computer
exit 0