1.Win10右键管理提示“该文件没有与之关联的程序来执行此操作”怎么
方法一、
1、按WIN+R 调出运行对话框,然后输入 gpedit.msc 回车;
2、展开“计算机配置”-“Windows设置”-“安全设置”-“本地策略”-“安全选项”;
3、在右侧找到“用户帐户控制:用于内置管理员帐户的管理员批准模式”,并双击打开;
4、设置为“已启用”,然后应用保存,最后重启系统;
方法二、
1、WIN+R组合键,”运行“,输入regedit,打开注册表编辑器;
2、定位到 Hkey_classes_root,找到 lnkfile, 新建”字符串值“,命名为 IsShortcut,数值数据空白就行。
2.WIN10打开资源管理器显示该文件没有与之关联的程序来执行该操作
大神答案
删除快捷方式小箭头导致的
方法一:
win+R,输入regedit,分别在
HKEY_CLASSES_ROOT\piffile
HKEY_CLASSES_ROOT\InternetShortcut
HKEY_CLASSES_ROOT\lnkfile
中新建→字符串值,命名为IsShortcut
方法二:
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
保存为.bat格式双击运行。
注意:
如果还需要除去小箭头用下面的命令,用这个方法就可以避免错误了
新建一个文本文件,粘贴后另存为.bat文件,然后以管理员身份打开
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Icons" /v 29 /d "%systemroot%\system32\imageres.dll,197" /t reg_sz /f
taskkill /f /im explorer.exe
attrib -s -r -h "%userprofile%\AppData\Local\iconcache.db"
del "%userprofile%\AppData\Local\iconcache.db" /f /q
start explorer
pause
3.windows10资源管理器打不开了,显示没有关联程序
那是相关联的注册表项被删掉了,新建一个记事本文件随便命名,拓展名为.reg,输入以下内容
Windows Registry Editor Version 5.00
[[HKEY_CLASSES_ROOT\Folder\shell\explore\command]
"DelegateExecute"="{11dbb47c-a525-400b-9e80-a54615a090c0}"
[HKEY_CLASSES_ROOT\Folder\shell\opennewprocess\command]
"DelegateExecute"="{11dbb47c-a525-400b-9e80-a54615a090c0}"
[HKEY_CLASSES_ROOT\Folder\shell\opennewwindow\command]
"DelegateExecute"="{11dbb47c-a525-400b-9e80-a54615a090c0}"
保存,然后双击,确定添加就行了
转载请注明出处windows之家 » win10点管理显示无关联应用