Skip to content

Instantly share code, notes, and snippets.

@swateek
Created June 26, 2023 14:53
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 swateek/ca115dac2f1cb8cd60fb97ac63a967fe to your computer and use it in GitHub Desktop.
Save swateek/ca115dac2f1cb8cd60fb97ac63a967fe to your computer and use it in GitHub Desktop.
Working With Windows Task Scheduler From CLI
@echo off
echo %DATE% %TIME%>C:\Users\Swateek\Downloads\tmp\abc_%RANDOM%.txt
schtasks /delete /TN "rs-tmp-create-file" /f
schtasks /create /sc MINUTE /mo 1 /tn "rs-tmp-create-file" /tr "C:\Users\Swateek\Downloads\create_test_files.bat"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment