我有一个Python进程,必须每天凌晨00:30(当地时间)运行。如何编写可以运行我的Python程序的Windows脚本。
答案 0 :(得分:1)
SCHTASKS /Create /S ABC /U user /P password /RU runasuser /RP runaspassword /SC DAILY /ST 03:00 /TN report /TR notepad.exe
来自Schtasks /create /? (although I changed it to 3am daily)
的许多例子之一。
如果使用重定向启动程序
cmd /c <rest of command line>