📎 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.
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.
Solution
I would try clearing your icon and thumbnail cache.
Open a Powershell prompt and run the following
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"
- Joined
- Jul 4, 2015
- Messages
- 8,995
I would try clearing your icon and thumbnail cache.
Open a Powershell prompt and run the following
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"