计划任务schtasks的参数怎么写?
我想写一个计划任务:每月的3,5,7日运行一个程序,命令行的写法如下:C:\Users\su0>schtasks/create/tn"MyApp"/trc:/apps/m...
我想写一个计划任务:每月的3,5,7日运行一个程序,命令行的写法如下:
C:\Users\su0>schtasks /create /tn "My App" /tr c:/apps/myapp.exe /sc monthly /d 3,5,7
但是不成功,返回的提示是"值对/d选项无效" 展开
C:\Users\su0>schtasks /create /tn "My App" /tr c:/apps/myapp.exe /sc monthly /d 3,5,7
但是不成功,返回的提示是"值对/d选项无效" 展开
2个回答
展开全部
追问
非常感谢您的耐心,但我是想通过脚本实现.
schtasks /create /tn "MyApp" /tr c:/app.exe /sc monthly /d 3
只能指定一个日期"3",无法枚举多个日期
补充:,我找了at命令的资料好像是支持按日枚举的,但win8下已经被废弃了,schtasks是否真的支持多日枚举?好像只支持按月枚举(多个月),但不支持按日(多个日)
或者通过wmi来写的话该如何写?
展开全部
我查看了微软的官方文档得知,在schtasks的create命令中,/d 参数只允许指定每月中的某一个日期,不能通过枚举指定多个日期。原文如下:
“
To schedule a task to run on a specific day each month
In this schedule type, the /sc monthly parameter and the /d (day) parameter are required. The /d parameter specifies a date of the month (1 - 31), not a day of the week, and you can specify only one day in the schedule. The /m (month) parameter is optional, with the default being every month (), while the /mo (modifier) parameter isn't valid with this schedule type.
”
如果你一定要通过schtasks的create命令来实现在每月的某几个指定日期运行某个程序的功能,我能想到的办法,只有创建多个任务,每个任务对应每月的一个日期。当然了,这种实现方法实在不够优雅。
“
To schedule a task to run on a specific day each month
In this schedule type, the /sc monthly parameter and the /d (day) parameter are required. The /d parameter specifies a date of the month (1 - 31), not a day of the week, and you can specify only one day in the schedule. The /m (month) parameter is optional, with the default being every month (), while the /mo (modifier) parameter isn't valid with this schedule type.
”
如果你一定要通过schtasks的create命令来实现在每月的某几个指定日期运行某个程序的功能,我能想到的办法,只有创建多个任务,每个任务对应每月的一个日期。当然了,这种实现方法实在不够优雅。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询