Posted On October 16, 2021

How To Fix History Disabled in Task Scheduler

kimconnect 0 comments
blog.KimConnect.com >> Windows >> How To Fix History Disabled in Task Scheduler

Issue:

When checking certain tasks, one may find that the ‘History’ tab is appended with the word ‘disabled’

Resolution:

Select the affected task > locate the ‘Enable All Tasks History’ on the Actions menu toward the right side of the screen

Leave a Reply

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

Related Post

Create New Custom Attribute to User Class

Log onto Domain Controller Schema Master with an account belong to the group Schema Admin…

Excel MD5 Hash Function

Go to the VB editor (Alt-F11), right-click on your workbook in theproject window, and click…

PowerShell: Kill a Windows Service Forcefully

# killService.ps1 $serviceName='vmms' function killService($serviceName='Spooler',$restart=$false){ $processId=Get-WmiObject -Class Win32_Service -Filter "Name LIKE '$serviceName'"|Select-Object -ExpandProperty ProcessId if($processId.count…