Skip to content

Scheduled Tasks

Tasks run at time intervals or by events (log-on, etc)

  • Tasks run with privileges of user who created them.
    • Administrator can set tasks to run as other users.

Usually need to look for tasks based on other clues like finding a script or log file that shows a scheduled task is being run.

List all scheduled tasks your user can see
Schtasks /query /fo LIST /v
List all scheduled tasks your user can see
Get-ScheduledTask| where {$_.TaskPath-notlike"\Microsoft*"} | ft TaskName,TaskPath,State