win7以上的系統(tǒng),特別是網吧無盤系統(tǒng),使用一段時間后,會出現右下角任務欄的所有圖標點了沒反映
解決方法:
1.開超級,重啟兩次,然后保存。(如果是服務器不想重啟,無盤不想開超級的用方法2解決)文章源自網吧系統(tǒng)維護-http://www.ykday.cn/6548.html
2.新建批處理bat文件,把以下內容復制進去保存,運行就可不重啟電腦解決,也不需要開超級。文章源自網吧系統(tǒng)維護-http://www.ykday.cn/6548.html
rem 關閉Windows外殼程序explorer
taskkill /f /im explorer.exe
rem 清理系統(tǒng)圖標緩存數據庫
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)托盤記憶的圖標
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文章源自網吧系統(tǒng)維護-http://www.ykday.cn/6548.html
或者下載此批處理運行即可解決!
評論