Windows

How to Enable Task Scheduler History in Windows 11

Richard
Written by
Richard
Sep 11, 2022 Updated Apr 16, 2026 2 min read
How to Enable Task Scheduler History in Windows 11

Task Scheduler is a built-in tool that runs programs for you automatically. By default, Windows only shows you the last time a task ran. If you want to see a full log of when your tasks started or finished, you need to turn on the history feature.

Why enable task history?

Enabling this feature lets you track exactly what your computer is doing in the background. It helps you troubleshoot if a scheduled task fails to run.

What happens when you are done?

Once enabled, Windows will record every event for your tasks. You can view this detailed log in the Event Viewer under Applications and Services Logs > Microsoft > Windows > TaskScheduler > Operational.

How to enable or disable Task Scheduler history

You can turn this feature on or off using the Task Scheduler app:

  1. Open the Start menu and search for Task Scheduler.
  2. Select the app from the results.
Windows 11 Task Scheduler history interface

Note: You must have administrative privileges to change these settings.

  1. Once the app is open, click the Action menu at the top.
  2. Select Enable All Tasks History.
  3. Alternatively, you can click Enable All Tasks History in the Actions panel on the right side of the window.
Enable all tasks history option in Task Scheduler

To turn it off later, follow these same steps and choose Disable All Tasks History instead.

Disable all tasks history option in Task Scheduler

Using Command Prompt

You can also use Windows PowerShell to change these settings. Open owerShell as administrator as an administrator and use these commands:

To enable history:

💻Code
wevtutil set-log Microsoft-Windows-TaskScheduler/Operational /enabled:true

To disable history:

💻Code
wevtutil set-log Microsoft-Windows-TaskScheduler/Operational /enabled:false

Summary

Enabling Task Scheduler history gives you a complete log of your automated tasks, which is great for monitoring and fixing issues. If you find the logs are creating too much clutter on your system, you can easily turn the feature off by following the same steps in reverse.

Was this guide helpful?

Tags: #Windows 11
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, the owner and lead writer at Geek Rewind, is a tech enthusiast passionate about simplifying complex IT topics. His years of hands-on experience in system administration and enterprise IT operations have honed his ability to provide practical insights and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

2453 articles → Twitter

📚 Related Tutorials

How to Access Command Prompt in Windows 11
Windows How to Access Command Prompt in Windows 11
How to Open PowerShell in Windows 11
Windows How to Open PowerShell in Windows 11

Leave a Reply

Your email address will not be published. Required fields are marked *