不少正在用win7系統(tǒng)的用戶(hù)也許會(huì)遇到一個(gè)桌面圖標(biāo)緩存問(wèn)題,問(wèn)題表現(xiàn)為“圖標(biāo)顯示有問(wèn)題”“桌面圖標(biāo)出現(xiàn)黑塊”等,大體就是上述兩個(gè)問(wèn)題,下面整理與實(shí)踐了幾個(gè)方法供大家參考
[plain]
rem 關(guān)閉Windows外殼程序explorer
taskkill /f /im explorer.exe
rem 清理系統(tǒng)圖標(biāo)緩存數(shù)據(jù)庫(kù)
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 清理 系統(tǒng)托盤(pán)記憶的圖標(biāo)
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
將以上代碼粘貼到記事本,然后保存為“XXXX.bat”,用管理員權(quán)限運(yùn)行即可。
win7桌面圖標(biāo)緩存重建方法,重建又稱(chēng)為“覆蓋”“清理”“刪除”,原理都是一樣的,方法如下:
以下是引用片段:
打開(kāi)任何一個(gè)文件夾,然后在地址欄輸入%USERPROFILE%\AppData\Local后按回車(chē)鍵即可跳轉(zhuǎn)到local目錄,找到IconCache.db文件并刪除,重啟啟動(dòng)后即可重建圖標(biāo)緩存,此文適用于Windows 7,Windows Vista,Windows 2008。
如果出現(xiàn)黑塊,請(qǐng)通過(guò)以下方法解決
將以下內(nèi)容復(fù)制到記事本,然后保存為“桌面圖標(biāo)黑塊修復(fù)器.bat”,然后運(yùn)行之!
以下是引用片段:
@echo off
title win7桌面圖標(biāo)黑塊修復(fù)工具
reg delete “hkcu\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons” /f
reg delete “hklm\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons” /f
taskkill /f /im explorer.exe start explorer.exe
通過(guò)上述兩個(gè)方法,您可以完美的解決win7桌面圖標(biāo)緩存了