# Schedule Tasks

### List all schedule tasks

```
schtasks /query /fo LIST /v

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