Created
April 26, 2015 22:33
-
-
Save jonaharagon/a9e8d2761979b2841ce2 to your computer and use it in GitHub Desktop.
Restart ucs.exe every 12 hours
This file contains hidden or 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 | |
:loop | |
start ucs.exe ... | |
timeout /t 43200 >null | |
taskkill /f /im ucs.exe >nul | |
goto loop |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment