Windows

How to Enable Task Scheduler History in Windows 11

Richard
Written by
Richard
Sep 11, 2022 Updated Apr 30, 2026 3 min read

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. This is essential for troubleshooting scheduled tasks and monitoring Windows administrative tools.

Why enable Task Scheduler 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. By tracking Event ID 106 and other system logs, you can identify why a task failed or if it completed successfully.

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. This provides a clear audit trail for all your automation.

How to enable or disable Task Scheduler history

You can turn this feature on or off using the Task Scheduler app. Note: You must have administrative privileges to change these settings.

  1. Open the Start menu and search for Task Scheduler.
  2. Select the app from the results.
Windows 11 Task Scheduler history interface
  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 PowerShell to Enable History

Advanced users can use PowerShell to manage these settings quickly. Note: You must run PowerShell as an administrator.

To enable history, run this command:

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

To disable history, run this command:

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

Viewing Logs in Event Viewer

Once enabled, you can view the logs by opening Event Viewer. Navigate to Applications and Services Logs > Microsoft > Windows > TaskScheduler > Operational. You can filter these logs to find specific tasks or errors. Learn more about managing logs at the official Microsoft documentation.

Summary

Enabling Task Scheduler history provides a detailed log of your automated tasks, which is vital for troubleshooting and system monitoring. By using the GUI or PowerShell, you can easily manage this feature. Remember that logs are stored in the Operational channel of the Event Viewer, and you can clear them anytime to save space or reset your tracking.

Does enabling Task Scheduler history slow down my PC?

Enabling Task Scheduler history has a negligible impact on system performance for most users. While it does write additional data to the system logs, the overhead is minimal. Unless you have thousands of tasks running every second, you will not notice any slowdown on your Windows 11 PC.

Where are Task Scheduler logs stored in Windows 11?

Task Scheduler logs are stored within the Windows Event Log system. You can find them by navigating to the path C:\Windows\System32\winevt\Logs\Microsoft-Windows-TaskScheduler%4Operational.evtx. It is best to view these files through the Event Viewer interface rather than opening the file directly.

How do I clear Task Scheduler history?

To clear your history, open Event Viewer, navigate to the TaskScheduler Operational log, and select ‘Clear Log’ from the Actions pane on the right. This will delete all existing entries, giving you a fresh start for tracking your tasks. This action requires administrative privileges to perform.

Was this guide helpful?

Tags: #Windows 11
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips 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.

Leave a Reply

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

Exit mobile version