Skip to content

Instantly share code, notes, and snippets.

@n0an
Last active February 22, 2017 09:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save n0an/fdacb2b58708d876c42e8a111155c736 to your computer and use it in GitHub Desktop.
Save n0an/fdacb2b58708d876c42e8a111155c736 to your computer and use it in GitHub Desktop.
https://technet.microsoft.com/en-us/library/cc772785(WS.10).aspx#BKMK_create
* To list tasks:
schtasks /query | more
* To delete task named 'stackoverflow':
schtasks.exe /delete /tn stackoverflow
* To create task named 'stackoverflow', run every 5 hours, first run at 12:27:
schtasks /create /sc hourly /st 12:27 /mo 5 /tn "stackoverflow" /tr 'python C:\stackoverflowEveryday.py'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment