What a huge time suck. Here is my short notes on what to do:
**Change Counts to 400
%SystemRoot%\diagnostics\scheduled\Maintenance\
(Note: First take ownership of and set modify permissions for these two files)
in TS_UnusedDesktopIcons.ps1 - change Line 50 to:
if((Get-ListLength $unusedDesktopIcons) -gt 400)
in TS_BrokenShortcuts.ps1 - Change Line 44
if(-not([String]::IsNullOrEmpty($brokenDesktopShortcuts) -and [String]::IsNullOrEmpty($brokenStartupShortcuts)) -and (((Get-ListLength $brokenDesktopShortcuts) + (Get-ListLength $brokenStartupShortcuts)) -gt
400))
I have tried editing those files through notepad, but I get an access denied error when I try to save.
When I look at the permissions on the files, I see that the only User that would be able to edit is "Trusted Installer" , Even though I am an admin on the machine.
I have tried using Windows Power Shell ISE (running as an admin) to edit and save the file, with no luck. I have even tried saving with a different file name, but I get access denied when trying to save to the maintenance folder as it has the same permissions
as the file.
I can disable the "Sheduled" task from taks scheduler, but I'm not sure if it is disabling any worth while tasks.