桌面快捷方式变白
作者:互联网
解决方式:把图标缓存的数据库删除
一、
第一步:win+r cmd进入命令行
第二步:一行一行键入如下命令
taskkill /im explorer.exe /f
cd /d %userprofile%\appdata\local
del iconcache.db /a
start explorer.exe
exit
二、
创建一个.bat文件
新建txt文件,内容如下:
@echo off
taskkill /im explorer.exe /f
cd /d %userprofile%\appdata\local
del iconcache.db /a
start explorer.exe
exit
保存,文件类型.txt改为.bat
双击运行
标签:iconcache,exe,桌面,explorer,appdata,im,变白,快捷方式,txt 来源: https://www.cnblogs.com/skywpb/p/14636295.html