windows – 如何使用schtasks.exe安排一个月中的多天任务?

前端之家收集整理的这篇文章主要介绍了windows – 如何使用schtasks.exe安排一个月中的多天任务?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
由于任务调度程序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

猜你在找的Windows相关文章