Skip to content

Instantly share code, notes, and snippets.

@jonaharagon
Created April 26, 2015 22:33
Show Gist options
  • Save jonaharagon/a9e8d2761979b2841ce2 to your computer and use it in GitHub Desktop.
Save jonaharagon/a9e8d2761979b2841ce2 to your computer and use it in GitHub Desktop.
Restart ucs.exe every 12 hours
@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