4

I have a task that starts a .bat file with some operation with files on a file system and I am interested in evaluating the time it takes for a task to get the job done.

I can see date/time when the task started and status in the History tab of the Task Properties, but am unable to figure out the time it took for the task to actually perform the work. I am able to record this by writing own log file with Python or .bat, but was looking for a way to get this information directly from Task Scheduler (Windows 2008R2/2012).

fixer1234
  • 27,486

2 Answers2

4

It's not clear to me if you're looking for information on how long the task ran or if you're looking for information on how long it took each operation of the task to run. If the former then see the attached image.

enter image description here

joeqwerty
  • 5,470
2

Go to Event Viewer > Applications and Services Logs > Microsoft > Windows > TaskScheduler > Operational. You should be able to find Task Completed in there.

shinjijai
  • 1,631