WIN10打开资源管理器显示该文件没有与之关联的程序来执行该操作.请安装应用,请在“默认应用设置”..关联 —— 解决方案

win+R,输入regedit,分别在
HKEY_CLASSES_ROOTpiffile
HKEY_CLASSES_ROOTInternetShortcut
HKEY_CLASSES_ROOTlnkfile
中新建→字符串值,命名为IsShortcut
如果需要除去小箭头用下面的命令
新建一个文本文件,粘贴后另存为.bat文件,然后以管理员身份打开
reg add "HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerShell Icons" /v 29 /d "%systemroot%system32imageres.dll,197" /t reg_sz /f

taskkill /f /im explorer.exe
attrib -s -r -h "%userprofile%AppDataLocaliconcache.db"
del "%userprofile%AppDataLocaliconcache.db" /f /q
start explorer
pause

原文地址:https://www.cnblogs.com/500m/p/10848152.html