Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 426
flybonzai Avatar asked Dec 19 '22 12:12

flybonzai


1 Answers

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
like image 165
Junaid Avatar answered Apr 08 '23 06:04

Junaid