Normally, to refresh the icon cache in Windows, we have to reboot.
Is there a way to refresh the icon cache in Windows 7/8 without rebooting?
411 Answers
Yes.
You can just run the following command to clear the icon cache:
ie4uinit.exe -ClearIconCacheFor Windows 10, use:
ie4uinit.exe -showCheck this video for a demo.
18The following way has worked since Vista; It requires an Explorer restart, but no reboot.
Short version: Stop all explorer.exe instances, delete the user's hidden IconCache.db file, and restart Explorer.
Long Version (there are other ways as well):
Close all Explorer windows that are currently open.
Launch Task Manager using the CTRL+SHIFT+ESC key sequence, or by running
taskmgr.exe.In the Process tab, right-click on the
explorer.exeprocess and select End Process.Click the End process button when asked for confirmation.
From the File menu of Task Manager, select New Task (Run…)
Type
CMD.EXE, and click OKIn the Command Prompt window, type the commands one by one and press ENTER after each command:
CD /d %userprofile%\AppData\Local DEL IconCache.db /a EXITIn Task Manager, click File, select New Task (Run…)
Type
EXPLORER.EXE, and click OK.
Warning: It's important that Explorer.exe not be running when you delete the IconCache.db file. If explorer is running, it will simply write out the current (corrupt) icons the next time it is shut down (e.g. when you logoff, shutdown, or restart).
3- Open command console with admin privileges
taskkill /IM explorer.exe /FCD /d %userprofile%\AppData\LocalDEL IconCache.db /a- start
explorer.exevia Task Manager
Create a .bat file and paste the following lines in it and then run it.
taskkill /f /im explorer.exe
cd /d %userprofile%\AppData\Local
del IconCache.db /a
start explorer.exe 1 There's a clean way to close the Explorer.exe instance which shows the taskbar and the Desktop icons.
You have to popup the classic Shutdown dialog window. The only common way I found to accomplish this is:
Leave at least one pixel of Desktop background free of overlapping Windows, then click on it to focus on the Desktop itself (the one with the icons).
Press Alt + F4 keyboard shortcut: then the classic Shutdown dialog will appear.
Now, press and hold CTRL+ALT+SHIFT click on
Cancel.
If you don't want to make a .bat, copy the line behind, press Win+R, paste it and press Enter.
cmd /c taskkill /f /im explorer.exe & del /a %userprofile%\AppData\Local\IconCache.db & start explorerYou can also paste it in the address bar of an explorer window; and, of course, in a command line window (you don't need the cmd /c then) but you won't have the line to easily repeat it in case you need it again.
CAVEAT:
Don't run this line in an elevated prompt unless you're sure you are the only user in the system or you will kill explorer in all open sessions. Therefore, don't press Shift+Ctrl+Enter in the Run dialog box.
By the way, I don't see the need of the cd /d command I see repeatedly. It seems everybody just copy/paste without considering what are the commands for.
Note:
I use & instead of && just in case one of the commands fails, to ensure explorer is restarted.
ie4uinit.exe as suggested by Elmo is a good option because it is available on every system already. I had trouble with it not refreshing sometimes in a complex batch file I have. Nircmd is a great alternative that worked for me.
This is the command I used that worked: nircmd shellrefresh
Though not a userland answer, simple call to
SHChangeNotify(SHCNE_ASSOCCHANGED, SHCNF_IDLIST, NULL, NULL);does that [1]. Possibly someone would create an utility to do just that; currently, using 7-zip and trying to modify file associations (for all users; without elevating permissions; which would fail and tell that operation failed) calls the notifications and rebuilds the icon cache.
Oh, just saw the comments to the accepted answer, where the call is discussed, and a tool for that is mentioned: .
[1]
If you want a complete refreshed icon cache, go to the addressbar of windows explorer and type "C:\Users*Username*\AppData\Local" and then delete IconCache.db.
**Note:**It may be a hidden file. So I recommend turning Show Hidden Files on in Folder Option.
1I also faced this issue when I needed to refresh icons after editing desktop.ini, then I stumbled upon this software named Restart Explorer which actually does the job.
It is a command line utility you need to install from their website then you can just call it like this to refresh icons.
Rexplorer.exe /I /FThe /I command rebuilds the icon cache, and the /F command Refresh the Windows explorer
Link of the command line utility
Not very beautiful but effective:
C:> tskill explorer
1