winops_auto_task_create
Create a Windows scheduled task by specifying task name, executable path, schedule, and start time.
Instructions
Create a Windows Scheduled Task.
Return Format
{"success": bool, "task_name": str}Examples
task_create(task_name="DailyBackup", task_path="C:\\scripts\\backup.bat", schedule="DAILY")Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| schedule | No | Task recurrence schedule. | DAILY |
| task_name | Yes | Unique task name. | |
| task_path | Yes | Full path to the executable. | |
| start_time | No | Start time in HH:mm format. | 12:00 |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||