windows上创建类似linux上crond定时任务

windows下定时任务需要的命令
schtasks 创建
这里只讲几个我们常用的命令

schtasks /create 创建一个新的定时任务
/sc 指定计划类型 设置分钟级 秒级 小时级
/mo 间隔时间
/tn 命令别名 对于后面查询和删除就以这个为唯一值
/tr 具体命令执行内容
例子:
schtasks /create /sc minute /mo 1 /tn normalMessagePush /tr “php d:\phpstudy_pro\WWW\we\think normalMessagePush”

删除
schtasks /delete /tn normalMessagePush 删除
schtasks /query /tn normalMessagePush 查询

参考:
https://blog.csdn.net/a1034996/article/details/123183855

你可能感兴趣的:(windows,crontab,schtasks,定时)