由于任务调度程序API在Vista&之后已经更改. Server 2008,使用schtasks安排任务是(尽我所知)在
Windows 2003 Server和Windows 2008 Server上运行的唯一方法.
我需要创建一个每月5日和20日运行的任务.这可能与schtasks.exe一起使用吗?
通过以下方式创建将在每个星期日和星期一的星期一运行的计划任务:
schtasks / create / tn test / tr“cmd.exe”/ sc weekly / d mon,sun
但是在相同的方面,以下任何一个都不起作用.
schtasks / create / tn test / tr“cmd.exe”/ sc month / d 5,15
schtasks / create / tn test / tr“cmd.exe”/ sc monthly / d“5 15”
有任何想法吗?
安排两个月度任务.一个用于第五个,一个用于第15个.
原文链接:https://www.f2er.com/windows/367269.html