桌面快捷方式变白
时间:2021-04-09 13:41:00
收藏:0
阅读:0
解决方式:把图标缓存的数据库删除
一、
第一步: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
双击运行
评论(0)