How do you pull a list of all scheduled jobs in Windows 2012 Server Task Scheduler?

21,027

Try the following PowerShell command for scheduled tasks

   Get-ScheduledTask | Get-ScheduledTaskInfo

This will give you the information like when was the last time a task was run and what was the output etc. To make it look more organised or to select only information you require you can do the following:

  Get-ScheduledTask | Get-ScheduledTaskInfo | Select TaskName,TaskPath,LastRunTime,LastTaskResult
Share:
21,027
flybonzai
Author by

flybonzai

Updated on October 13, 2020

Comments

  • flybonzai
    flybonzai over 3 years

    I've been tasked with running a daily report that looks at all our jobs scheduled to run on that day, and checks to see if they have successfully ran or not. For now we are running on Windows 2008 Server, and have our jobs scheduled through the Task Scheduler. I'm definitely not a Windows developer, so I'm wondering if it is possible to pull the information I'm looking for through PowerShell or some other tool?