Win10 对图标及其缩略图缓存清空

xiongli 2019-03-27

重建Windows 10图标缓存.bat

cd /d %userprofile%\AppData\Local\Microsoft\Windows\Explorer
taskkill /f /im explorer.exe
attrib -h iconcache_*.db
del iconcache_*.db /a
start explorer
pause

重建Windows 10缩略图缓存.bat

cd /d %userprofile%\AppData\Local\Microsoft\Windows\Explorer
taskkill /f /im explorer.exe
attrib -h thumbcache_*.db
del thumbcache_*.db /a
start explorer
pause

相关推荐