Windows 创建计划任务

Windows 建立计划任务

Windows schedule tasks / Windows 计划任务

Windows 图形化界面创建计划任务

参考资料
http://edi.wang/post/2012/6/5/daily-backup-using-batch-and-task-schedule-in-windows

在开始菜单中找到并打开“任务计划程序”,然后在右边的窗格内点击“创建基本任务”:

Windows 命令行方式创建计划任务

Create scheduled tasks using windows command prompt (cmd).
Windows命令行创建计划任务

1
2
3
4
5
6
7
8
# 新建任务 如果py脚本有参数可以把参数放在cmd
schtasks /Create /tn testschtask /tr "C:\scripts\myscript.cmd" /sc DAILY /st 13:00:00
schtasks /create /tn "Run my script" /tr "C:\test 2\myscript.cmd \"one of the arguments to pass\" anotherargument \"This is the third argument\" lastargument"
# 查看某一具体任务
schtasks /Query /tn testschtask
# 删除任务
schtasks /Delete /tn testschtask

troubleshooting

如果schtasks 在cmd上提示错误: “无法加载列资源”。解决办法如下,
查看cmd 编码:”chcp”,如果返回936,说明是中文GBK编码,此时 schtasks就会报错,可以将编码936调整 为 437 美国编码。调整方法如下:

1
chcp 437