Fix White Blank Icons on Desktop and Taskbar in Windows

修复 Windows 桌面和任务栏图标变白。

Save the following content as a .bat file, then run it via administrator authority.

taskkill /f /im explorer.exe

cd /d %userprofile%\appdata\local
del IconCache.db /a

cd /d %userprofile%\AppData\Local\Microsoft\Windows\Explorer
del thumbcache_32.db /a
del thumbcache_96.db /a
del thumbcache_102.db /a
del thumbcache_256.db /a
del thumbcache_1024.db /a
del thumbcache_idx.db /a
del thumbcache_sr.db /a

echo y|reg delete "HKEY_CLASSES_ROOT\Local Settings\Software\Microsoft\Windows\CurrentVersion\TrayNotify" /v IconStreams
echo y|reg delete "HKEY_CLASSES_ROOT\Local Settings\Software\Microsoft\Windows\CurrentVersion\TrayNotify" /v PastIconsStream

start explorer.exe
Principle: Refresh local icon cache.
阅读剩余
THE END