How to run scheduled task inside .vbs script?
It's not about how to schedule .vbs script inside Task Scheduler.
But I have a task that I want to run by running this one .vbs script.
How to run scheduled task inside .vbs script?
It's not about how to schedule .vbs script inside Task Scheduler.
But I have a task that I want to run by running this one .vbs script.
The simplest way is to shell out to the
schtaskscommandline utility.You could also use the Task Scheduler scripting API, but that would require more code.