task scheduler task export

Allows you to export tasks from the Task Scheduler.


Example

Running this code will create a UI button named "Export" which will export all tasks to the "Desktop".

This is shown above the UBot browser.

ui button("Export") {
    plugin command("OS Automation.dll", "task scheduler task export", "\\", "All Tasks", "{$special folder("Desktop")}\\")
}

Was this helpful?