📎 AI Summary:
The thread discusses an issue where updating CCleaner caused all user shortcuts' icons to change to a specific image. The original poster is seeking a way to restore the default icons for their shortcuts. A subsequent contributor suggests clearing the icon and thumbnail caches using PowerShell commands to potentially fix the icon display problem.

John9210

Senior Member
Joined
Dec 19, 2016
Messages
42
Thread Author #1
I downloaded the latest version of CClean. However, it changed all the icon image to look like
An image from 'Shortcut icon change'. Icon of CCleaner forum shortcut on a computer desktop.
. How can I change them back to the default image?
 

Last edited by a moderator:
Solution
I would try clearing your icon and thumbnail cache.

Open a Powershell prompt and run the following

Code:
Stop-Process -Name explorer
Remove-Item -Path "$($env:LOCALAPPDATA)\Microsoft\Windows\Explorer\iconcache*.db" -Force
Remove-Item -Path "$($env:LOCALAPPDATA)\Microsoft\Windows\Explorer\thumbcache*.db" -Force
Start-Sleep -Seconds 3
Get-ChildItem "$($env:LOCALAPPDATA)\Microsoft\Windows\Explorer"

Neemobeer

Windows Forum Team
Staff member
Joined
Jul 4, 2015
Messages
8,995
If CCleaner changed their icons you can't really change them easily.
 

John9210

Senior Member
Joined
Dec 19, 2016
Messages
42
Thread Author #3
I'm not talking about their icon, ever single one of my short cuts have changed. Also, new shortcuts have the CCleaner icon!!
 

Neemobeer

Windows Forum Team
Staff member
Joined
Jul 4, 2015
Messages
8,995
I would try clearing your icon and thumbnail cache.

Open a Powershell prompt and run the following

Code:
Stop-Process -Name explorer
Remove-Item -Path "$($env:LOCALAPPDATA)\Microsoft\Windows\Explorer\iconcache*.db" -Force
Remove-Item -Path "$($env:LOCALAPPDATA)\Microsoft\Windows\Explorer\thumbcache*.db" -Force
Start-Sleep -Seconds 3
Get-ChildItem "$($env:LOCALAPPDATA)\Microsoft\Windows\Explorer"
 

Solution