【问题标题】:Windows scheduled tasks - run task as soon as possible after missed scheduleWindows 计划任务 - 错过计划后尽快运行任务
【发布时间】:2013-12-04 17:21:19
【问题描述】:

希望是一个不错的简单问题,但我无法在线找到解决方案。如何通过命令行schtasks /create启用选项Run task as soon as possible after a scheduled start is missed

文档似乎没有将此选项显示为命令行选项,使用schtasts /create /? 时的文档也没有。

【问题讨论】:

    标签: scheduled-tasks command-prompt


    【解决方案1】:

    在 technet 论坛上,this recommendation was posted

    作为建议,当我遇到此参数缺失时 我用我想要的属性手动完成了一项任务,导出到 XML 然后我用这样的东西创建任务: schtasks /create /TN "我的新任务名称" /xml "C:\TEMP\My Saved Task.xml" /RU 域\用户名/RP 密码

    【讨论】: