QUOTE(cwteoh1 @ Jun 2 2017, 01:05 PM)
just rebuild your icon cachehttps://www.tenforums.com/tutorials/5645-re...ndows-10-a.html
CODE
:: Created by: Shawn Brink
:: http://www.sevenforums.com
:: Tutorial: http://www.sevenforums.com/tutorials/49819-icon-cache-rebuild.html
@echo off
set iconcache=%localappdata%\IconCache.db
echo The Explorer process must be killed to delete the Icon DB.
echo.
echo Please SAVE ALL OPEN WORK before continuing.
echo.
pause
echo.
If exist "%iconcache%" goto delID
echo.
echo Icon DB has already been deleted.
echo.
pause
exit /B
:delID
echo Attempting to delete Icon DB...
echo.
taskkill /IM explorer.exe /F
del "%iconcache%" /A
echo.
echo Icon DB has been successfully deleted.
echo.
start explorer.exe
pause
exit /B
:: http://www.sevenforums.com
:: Tutorial: http://www.sevenforums.com/tutorials/49819-icon-cache-rebuild.html
@echo off
set iconcache=%localappdata%\IconCache.db
echo The Explorer process must be killed to delete the Icon DB.
echo.
echo Please SAVE ALL OPEN WORK before continuing.
echo.
pause
echo.
If exist "%iconcache%" goto delID
echo.
echo Icon DB has already been deleted.
echo.
pause
exit /B
:delID
echo Attempting to delete Icon DB...
echo.
taskkill /IM explorer.exe /F
del "%iconcache%" /A
echo.
echo Icon DB has been successfully deleted.
echo.
start explorer.exe
pause
exit /B
This post has been edited by cstkl1: Jun 2 2017, 07:09 PM
Jun 2 2017, 07:07 PM
Quote
0.1099sec
0.61
7 queries
GZIP Disabled