解決辦法如下:
將下列程式碼複製貼上到記事本里,儲存為批處理檔案(如"a.bat"),雙擊執行後即可。(說明:下面給出WinXP和Win7兩種系統的不同方法,根據自己電腦環境選擇。)
------------------Windows XP系統從下面這行起復制----------------------
rem 關閉explorer.exe
taskkill /f /im explorer.exe
attrib -h -i %userprofile%\Local Settings\Application Data\IconCache.db
del %userprofile%\Local Settings\Application Data\IconCache.db /a
rem 開啟explorer
start explorer
--------------------Windows 7系統從下面這行起復制----------------
attrib -h -i %userprofile%\AppData\Local\IconCache.db
del %userprofile%\AppData\Local\IconCache.db /a
解決辦法如下:
將下列程式碼複製貼上到記事本里,儲存為批處理檔案(如"a.bat"),雙擊執行後即可。(說明:下面給出WinXP和Win7兩種系統的不同方法,根據自己電腦環境選擇。)
------------------Windows XP系統從下面這行起復制----------------------
rem 關閉explorer.exe
taskkill /f /im explorer.exe
attrib -h -i %userprofile%\Local Settings\Application Data\IconCache.db
del %userprofile%\Local Settings\Application Data\IconCache.db /a
rem 開啟explorer
start explorer
--------------------Windows 7系統從下面這行起復制----------------
rem 關閉explorer.exe
taskkill /f /im explorer.exe
attrib -h -i %userprofile%\AppData\Local\IconCache.db
del %userprofile%\AppData\Local\IconCache.db /a
rem 開啟explorer
start explorer