windows 桌面应用图标没有快捷方式的箭头了如何修复 可以通过注册表恢复通常是IsShortcut被删除或Shell Icons\29被设置成了透明图标。方法一手动恢复按Win R输入regedit打开HKEY_CLASSES_ROOT\lnkfile在右侧新建“字符串值”名称为IsShortcut数值数据保持空白。检查下面两个位置HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons如果右侧存在名为29的值将其删除。重启资源管理器或者注销、重启电脑。管理员 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.exeIsShortcut必须是空的字符串值Windows 根据它识别快捷方式并显示箭头。微软 Shell Links 说明