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?
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
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With