原因分析
出現(xiàn)這樣的問(wèn)題主要是由于系統(tǒng)圖標(biāo)緩存出現(xiàn)問(wèn)題導(dǎo)致的。
解決方法
方法一:先嘗試重啟一下系統(tǒng),通常能解決80%以上的問(wèn)題。
方法二:如不行的話需要重建圖標(biāo)緩存
1、在電腦桌面的空白處鼠標(biāo)右擊,選擇新建文本文檔;
2、然后將下面的代碼復(fù)制粘貼進(jìn)去,代碼如下:
rem 關(guān)閉Windows外殼程序explorer
taskkill /f /im explorer.exe
rem 清理系統(tǒng)圖標(biāo)緩存數(shù)據(jù)庫(kù)
attrib -h -s -r "%userprofile%AppDataLocalIconCache.db"
del /f "%userprofile%AppDataLocalIconCache.db"
attrib /s /d -h -s -r "%userprofile%AppDataLocalMicrosoftWindowsExplorer*"
del /f "%userprofile%AppDataLocalMicrosoftWindowsExplorer humbcache_32.db"
del /f "%userprofile%AppDataLocalMicrosoftWindowsExplorer humbcache_96.db"
del /f "%userprofile%AppDataLocalMicrosoftWindowsExplorer humbcache_102.db"
del /f "%userprofile%AppDataLocalMicrosoftWindowsExplorer humbcache_256.db"
del /f "%userprofile%AppDataLocalMicrosoftWindowsExplorer humbcache_1024.db"
del /f "%userprofile%AppDataLocalMicrosoftWindowsExplorer humbcache_idx.db"
del /f "%userprofile%AppDataLocalMicrosoftWindowsExplorer humbcache_sr.db"
rem 清理 系統(tǒng)托盤記憶的圖標(biāo)
echo y|reg delete "HKEY_CLASSES_ROOTLocal SettingsSoftwareMicrosoftWindowsCurrentVersionTrayNotify" /v IconStreams
echo y|reg delete "HKEY_CLASSES_ROOTLocal SettingsSoftwareMicrosoftWindowsCurrentVersionTrayNotify" /v PastIconsStream
rem 重啟Windows外殼程序explorer
start explorer
3、粘貼完之后將文件保存為.bat格式,然后用管理員權(quán)限運(yùn)行即可;
通過(guò)上面有兩種方法,都可以解決右下角圖標(biāo)消失不能點(diǎn)擊的問(wèn)題大家可以學(xué)習(xí)一下哦