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. 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.
- Open the Start menu and search for Task Scheduler.
- Select the app from the results.

- Once the app is open, click the Action menu at the top.
- Select Enable All Tasks History.
- Alternatively, you can click Enable All Tasks History in the Actions panel on the right side of the window.

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

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:
wevtutil set-log Microsoft-Windows-TaskScheduler/Operational /enabled:true
To disable history, run this command:
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?
Leave a Reply Cancel reply