Moved .ps1 files to subdir Scripts/

This commit is contained in:
Markus Fleschutz
2020-05-22 13:08:48 +00:00
parent 20eae280f8
commit 413e1f1fc8
11 changed files with 0 additions and 0 deletions

10
Scripts/poweroff.ps1 Executable file
View File

@ -0,0 +1,10 @@
# PowerShell Script to Shutdown the Local Computer
# ------------------------------------------------
# Author: Markus Fleschutz
# Source: github.com/fleschutz/PowerShell
# License: CC0
#
# NOTE: Halts the local computer! Administrator rights might be needed!
Stop-Computer
exit 0