一步搞定
C:\Users\DELL>schtasks /create /tn doc /tr C:\Users\DELL\Desktop\test.bat /sc DAILY /st 00:00:00
解释:
schtasks:定时任务创建的命令
/create:创建
/tn:定时任务名字
/tr:运行脚本
/sc:每天
/st:运行时间
--查询所有的定时任务
schtasks /query
--查询指定的定时任务,通过findstr查找对应的任务名称
schtasks /query |findstr doc
--删除定时任务
C:\Users\DELL>schtasks /delete /tn doc