For the complete documentation index, see llms.txt. This page is also available as Markdown.

Schedule Tasks

List all schedule tasks

schtasks /query /fo LIST /v

# In Powershell
Get-ScheduleTask | where {$_.TaskPath -notlike "\Microsoft*"} | ft TaskName,TaskPAth,State

Last updated