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

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?

1 Answer

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 
2

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like