Skip to content

Instantly share code, notes, and snippets.

View CodetheNewWorld's full-sized avatar

CodetheNewWorld

View GitHub Profile
@CodetheNewWorld
CodetheNewWorld / Shutdown.bat
Created April 29, 2017 21:26
Shutdown your Computer with this batch . Copy and pate into notepad and then save as shutdown .bat
@echo off
echo Would you like to shutdown your Computer
pause
shutdown -s -c "Make sure to Save your Files"
exit