windows 桌面应用图标没有快捷方式的箭头了如何修复

📅 2026/7/22 6:51:00 👁️ 阅读次数 📝 编程学习
windows 桌面应用图标没有快捷方式的箭头了如何修复

可以通过注册表恢复,通常是IsShortcut被删除或Shell Icons\29被设置成了透明图标。

方法一:手动恢复

  1. Win + R,输入:

regedit
  1. 打开:

HKEY_CLASSES_ROOT\lnkfile
  1. 在右侧新建“字符串值”,名称为:

IsShortcut

数值数据保持空白。

  1. 检查下面两个位置:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons

如果右侧存在名为29的值,将其删除。

  1. 重启资源管理器,或者注销、重启电脑。

管理员 PowerShell 一键修复

New-ItemProperty -Path 'Registry::HKEY_CLASSES_ROOT\lnkfile' ` -Name 'IsShortcut' -PropertyType String -Value '' -Force New-ItemProperty -Path 'Registry::HKEY_CLASSES_ROOT\InternetShortcut' ` -Name 'IsShortcut' -PropertyType String -Value '' -Force Remove-ItemProperty ` -Path 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons' ` -Name '29' -ErrorAction SilentlyContinue Remove-ItemProperty ` -Path 'HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons' ` -Name '29' -ErrorAction SilentlyContinue Stop-Process -Name explorer -Force Start-Process explorer.exe

IsShortcut必须是空的字符串值;Windows 根据它识别快捷方式并显示箭头。微软 Shell Links 说明