Windows scheduled tasks - run task as soon as possible after missed schedule

Viewed 3988

Hopefully a nice simple question but I haven't been able to find the solution online. How do I enable the option Run task as soon as possible after a scheduled start is missed via a command line schtasks /create.

The documentation does not seem to show this option as a command line option and neither does the documentation when using schtasts /create /?.

1 Answers

Over in the technet forums, this recommendation was posted:

As a suggestion, when I've come across missing parameters for this I've made a task manually with the properties I want, exported to XML and then I create the task with something like this: schtasks /create /TN "My New Task Name" /xml "C:\TEMP\My Saved Task.xml" /RU DOMAIN\username /RP password

Related