| Previous | Next |
| SCHED_E_TRIGGER_NOT_FOUND | SCHED_E_TASK_NOT_RUNNING |
SCHED_E_TASK_NOT_READY
SCHED_E_TASK_NOT_READY means that one or more properties required to run the task have not been set. The code points to an incomplete task definition, not necessarily to the action executable, the account password, or the Task Scheduler service itself.
Inspect the task as a complete definition
- Check the registered task rather than only an in-memory template. A task definition contains settings, actions, triggers, registration information, and a principal.
- For time and calendar triggers, verify required start boundaries and scheduling data; for actions, verify that an actual action was added before registration.
- Confirm that any required principal and logon settings are supplied consistently by the XML and the registration API parameters.
Do not guess at a missing property
Export the task XML, validate it against the documented schema, and identify the absent component from the registration or run path. Adding default credentials or a dummy trigger can make the code disappear while changing the intended security model.
Microsoft: Task Scheduler status codes · Microsoft: Tasks · Microsoft: Task Scheduler schema
Looking for a different code? Search another status or error code.