Last active
December 16, 2015 14:39
-
-
Save jibbius/5450306 to your computer and use it in GitHub Desktop.
Clear IE icon cache: This script is supposed to clear the icon cache, for "favourites" in IE.
You may also need to delete cache/browsing history/cookies...etc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
REM | |
REM This script is supposed to clear the icon cache, for "favourites" in IE. | |
REM You may also need to delete cache/browsing history/cookies...etc | |
REM | |
cd /d %userprofile%\AppData\Local | |
attrib -h IconCache.db | |
del IconCache.db | |
pause |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment