解决步骤参考:
1、首先打开注册表,键盘同时按Win+R键,打开运行窗口输入regedit,点击确定;
2、打开注册表,依次展开并定位到HKEY_CLASSES_ROOT\lnkfile;
3、在右边空白位置,点击鼠标右键新建—字符串值;
4、新建的字符串值重命名为IsShortcut (其他默认不用修改),然后关闭注册表重启电脑便可。
同时为了方便大家操作,也可以复制以下代码 保存为BAT 批处理文件来修复。
新建文本文档将以下语句复制进去,将文件扩展名改为bat;点击运行
taskkill /f /im explorer.exe
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /d "C:\Windows\system32\imageres.dll,154" /t reg_sz /f
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /d "C:\Windows\system32\imageres.dll,154" /t reg_sz /f
reg add "HKEY_CLASSES_ROOT\lnkfile" /v IsShortcut /t reg_sz /f
reg add "HEKY_CLASSES_ROOT\piffile" /v IsShortcut /t reg_sz /f
start explorer