task scheduler task remove

Allows you to remove a scheduled task that is registered on a computer.


Example

Running this code will create a UI button named "Remove Task" that will remove a task from the folder name "Test Task".

This is shown above the UBot browser.

ui button("Remove Task") {
    plugin command("OS Automation.dll", "task scheduler task remove", "Task", "Test Task", "\\")
}

Was this helpful?