如何编写可以每天运行进程的Windows批处理脚本

时间:2016-03-09 02:25:23

标签: windows powershell batch-file

我有一个Python进程,必须每天凌晨00:30(当地时间)运行。如何编写可以运行我的Python程序的Windows脚本。

1 个答案:

答案 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>