- Oct 23, 2012
- 12,527
I have this problem in Windows 7 from time to time.When I download or uninstall a 3rd party program and some of my icons are not showing properly.There are 2 ways to correct this by rebuilding the Icon Cache either manually or with a convenient bat file that you run and does everything for you.I use the bat file which works every time.
*I have used this for quite sometime and thought I would share it here
Automatically Rebuild the Icon Cache
1. Download the .bat file below.
Rebuild_Icon_Cache.bat
2. Save the file to your desktop, and run it.
3. Click on Run when prompted.
4. Command prompt will then ask you to type in y/n {yes or no} to restart your computer
5. Restart PC and all your icons should be back to normal
To Manually Rebuild the Icon Cache using the Command Prompt
1. Close and save anything that you are working on. This command will kill explorer and restart the computer when completed.
2. Open a command prompt in Windows 7 or Windows 8.
3. In the command prompt, Copy and paste each command line below exactly as is one at a time and press enter after each command.
NOTE: The last command will restart the computer, so be sure to close and save anything that you are working on first.
4. The IconCache.db file has now been rebuilt.
Source
*I have used this for quite sometime and thought I would share it here
Automatically Rebuild the Icon Cache
1. Download the .bat file below.
Rebuild_Icon_Cache.bat
2. Save the file to your desktop, and run it.
3. Click on Run when prompted.
4. Command prompt will then ask you to type in y/n {yes or no} to restart your computer
5. Restart PC and all your icons should be back to normal
To Manually Rebuild the Icon Cache using the Command Prompt
1. Close and save anything that you are working on. This command will kill explorer and restart the computer when completed.
2. Open a command prompt in Windows 7 or Windows 8.
3. In the command prompt, Copy and paste each command line below exactly as is one at a time and press enter after each command.
NOTE: The last command will restart the computer, so be sure to close and save anything that you are working on first.
Code:
taskkill /IM explorer.exe /F
CD /d %userprofile%\AppData\Local
DEL IconCache.db /a
shutdown /r /f /t 00
4. The IconCache.db file has now been rebuilt.
Source