zoukankan      html  css  js  c++  java
  • windows桌面图标变花、变白,显示不正常的解决办法

    这种问题一般是因为系统图标缓存,清理缓存即可(中毒的除外),执行下面脚本清理系统图标缓存即可:

    rem 关闭Windows外壳程序explorer
    
    taskkill /f /im explorer.exe
    
    rem 清理系统图标缓存数据库
    
    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 清理 系统托盘记忆的图标
    
    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

    复制代码,保存到txt文件,后缀名改为.bat,双击执行即可!(屏幕会闪一下,不用怕)

  • 相关阅读:
    Python课程回顾(day26)网络编程
    Python课程回顾(day27)
    Python课程回顾(day25)
    Python课程回顾(day24)
    Python课程回顾(day23)
    Python课程回顾(day22)
    Python课程回顾(day21)
    Python课程回顾(day20)
    Python课程回顾(day19)
    hive小tips(各种解析)
  • 原文地址:https://www.cnblogs.com/yunfeifei/p/13158736.html
Copyright © 2011-2022 走看看