Last active
January 21, 2016 15:10
-
-
Save techeverri/64cb9e2aae8c697447b9 to your computer and use it in GitHub Desktop.
Cancel Windows shutdown periodically
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@ECHO OFF | |
SET /A TIMER = 15 | |
:LOOP | |
SHUTDOWN /A | |
TIMEOUT /T | |
GOTO LOOP |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment