how to solve the problem of white icons

默燃 李 0 Reputation points
2026-01-31T12:41:11.5666667+00:00

资源管理器出了问题,通过清理图标IconCache缓存,还原默认图标方法都没有解决,也尝试了sfc /scannow依然不行,没有解决问题。

There is a problem with the File Explorer. Neither clearing the IconCache cache nor restoring the default icons has resolved the issue. I have also tried running sfc /scannow, but it still didn't work. The problem remains unresolved.PixPin_2026-01-31_20-33-15

Windows for home | Windows 11 | Files, folders, and storage
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. TaoLi 63,505 Reputation points Independent Advisor
    2026-02-01T00:28:35.4233333+00:00

    您好,

    桌面上创建txt记事本文件,输入下面代码保存,改为.bat后缀格式,右键以管理员身份打开,深度清理图标缓存,看看是否能够解决问题

    rem 关闭Windows外壳程序explorer
    taskkill /f /im explorer.exe
    rem 清理系统图标缓存数据库
    attrib -h -s -r "%userprofile%\AppData\Local\IconCache.db"
    del /f "%userprofile%\AppData\Local\IconCache.db"
    attrib /s /d -h -s -r "%userprofile%\AppData\Local\Microsoft\Windows\Explorer\*"
    del /f "%userprofile%\AppData\Local\Microsoft\Windows\Explorer\thumbcache_32.db"
    del /f "%userprofile%\AppData\Local\Microsoft\Windows\Explorer\thumbcache_96.db"
    del /f "%userprofile%\AppData\Local\Microsoft\Windows\Explorer\thumbcache_102.db"
    del /f "%userprofile%\AppData\Local\Microsoft\Windows\Explorer\thumbcache_256.db"
    del /f "%userprofile%\AppData\Local\Microsoft\Windows\Explorer\thumbcache_1024.db"
    del /f "%userprofile%\AppData\Local\Microsoft\Windows\Explorer\thumbcache_idx.db"
    del /f "%userprofile%\AppData\Local\Microsoft\Windows\Explorer\thumbcache_sr.db"
    rem 清理 系统托盘记忆的图标
    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
    rem 重启Windows外壳程序explorer
    start explorer
    
    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.