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,双击执行即可!(屏幕会闪一下,不用怕)

  • 相关阅读:
    iOS 验证码按钮倒计时
    简单三层复习
    文件读写,改进版
    第一个文件读写的例子
    文件读写原理
    Ajax原理
    MVC,布局页面
    在MVC视图的代码块中,直接输出文本,有几种方式?
    MVC,如何在视图中声明方法,调用方法?
    MVC怎么在当前视图中,传递参数给到另外一个视图?
  • 原文地址:https://www.cnblogs.com/yunfeifei/p/13158736.html
Copyright © 2011-2022 走看看