Follow
Windows

How to Enable Task Scheduler History in Windows 11

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

You enable history-on-multiple-devices-using-windows-11/" class="sal-link" rel="noopener" target="_blank" data-sal-id="38288">Task Scheduler history in Windows 11 to get detailed logs of when your scheduled tasks start, run, and finish.

Task Scheduler is Windows’ built-in tool for automating programs and scripts. By default, it only shows the last execution time, but enabling history provides a full audit trail crucial for troubleshooting and monitoring.

Activating this feature records every event, including success and failure codes like Event ID 106, allowing you to pinpoint issues with automated tasks.

Once enabled, you access these detailed logs within the Event Viewer, specifically 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. 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
Was this helpful?
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.

📚 Related Tutorials

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

No comments yet — be the first to share your thoughts!

Leave a Comment

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