资源描述
解决WORD中由于本机限制,该操作已被取消问题
YYL注:按照红色部分修改注册表即可解决:
WORD生成的目录点击不能跳转
2012-06-05 17:59 提问者: born0820| 悬赏分:5|浏览次数:675次
ctrl+单击目录提示:
“由于本机的限制,该操作已被取消,请与系统管理员联系。”
试过下面方法,无效!
注册表 HKEY_CURRENT_USER\Software\Classes\.html项,将ChromeHTML值改成Htmlfile
如果没有:
1. 单击选中【classes】,右键新增“项”
2.重命名为.html
3.选中【.html】,看右边框内,有“默认”,双击该项,弹出窗口内,修改“数值数据”为HTMLFILE
4.关闭office ,重开便可。大功告成。
最近打开一个WORD文档,发现想跳转到目录指定的那个链接页时会弹出提示,说“由于本机限制,该操作已被取消。请与系统管理员联系”。经上网查询后发现,出现这种问题多半是因为电脑里安装了多个浏览器,而各个浏览器为了将自己作为默认浏览器,会更改一些系统设置,导致出现这种问题。
解决方法有如下几种:
一、重置浏览器选项
如果使用的是IE版本是6以上,打开控制面板-》Internet 选项-》在“高级”Tab下会看到“重置Internet Explorer设置”的选项,点击重置按钮。
如果IE版本是6或更低,则重置按钮是放在了“程序”Tab里。
二、修改注册表参数如果第一种方法没有解决问题,比如说我,则需要修改注册表相关选项。如果机器是Win32的就将下面代码粘贴到记事本里,然后保存为reg格式文件。
[plain] view plaincopyprint?
1. Windows Registry Editor Version 5.00
2.
3. [HKEY_CLASSES_ROOT\SOFTWARE\Classes\htmlfile\shell\open\command]
4. @="\"C:\\Program Files\\Internet Explorer\\iexplore.exe\" -nohome"
5. [HKEY_CLASSES_ROOT\SOFTWARE\Classes\htmlfile\shell\opennew\command]
6. @="\"C:\\Program Files\\Internet Explorer\\iexplore.exe\" %1"
7.
8. [HKEY_CLASSES_ROOT\.htm]
9. @="htmlfile"
10. [HKEY_CLASSES_ROOT\.html]
11. @="htmlfile"
12. [HKEY_CLASSES_ROOT\.shtml]
13. @="htmlfile"
14.
15. [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\htmlfile\shell\open\command]
16. @="\"C:\\Program Files\\Internet Explorer\\iexplore.exe\" -nohome"
17. [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\htmlfile\shell\opennew\command]
18. @="\"C:\\Program Files\\Internet Explorer\\iexplore.exe\" %1"
19.
20. [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.htm]
21. @="htmlfile"
22. [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.html]
23. @="htmlfile"
24. [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.shtml]
25. @="htmlfile"
26.
27. [-HKEY_CURRENT_USER\SOFTWARE\Classes\htmlfile]
28. [-HKEY_CURRENT_USER\Software\Classes\.htm]
29. [-HKEY_CURRENT_USER\Software\Classes\.html]
30. [-HKEY_CURRENT_USER\Software\Classes\.shtml]
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\SOFTWARE\Classes\htmlfile\shell\open\command]
@="\"C:\\Program Files\\Internet Explorer\\iexplore.exe\" -nohome"
[HKEY_CLASSES_ROOT\SOFTWARE\Classes\htmlfile\shell\opennew\command]
@="\"C:\\Program Files\\Internet Explorer\\iexplore.exe\" %1"
[HKEY_CLASSES_ROOT\.htm]
@="htmlfile"
[HKEY_CLASSES_ROOT\.html]
@="htmlfile"
[HKEY_CLASSES_ROOT\.shtml]
@="htmlfile"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\htmlfile\shell\open\command]
@="\"C:\\Program Files\\Internet Explorer\\iexplore.exe\" -nohome"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\htmlfile\shell\opennew\command]
@="\"C:\\Program Files\\Internet Explorer\\iexplore.exe\" %1"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.htm]
@="htmlfile"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.html]
@="htmlfile"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.shtml]
@="htmlfile"
[-HKEY_CURRENT_USER\SOFTWARE\Classes\htmlfile]
[-HKEY_CURRENT_USER\Software\Classes\.htm]
[-HKEY_CURRENT_USER\Software\Classes\.html]
[-HKEY_CURRENT_USER\Software\Classes\.shtml]
如果是Win64,则是
[plain] view plaincopyprint?
1. Windows Registry Editor Version 5.00
2.
3. [HKEY_CLASSES_ROOT\SOFTWARE\Classes\htmlfile\shell\open\command]
4. @="\"C:\\Program Files (x86)\\Internet Explorer\\iexplore.exe\" -nohome"
5. [HKEY_CLASSES_ROOT\SOFTWARE\Classes\htmlfile\shell\opennew\command]
6. @="\"C:\\Program Files (x86)\\Internet Explorer\\iexplore.exe\" %1"
7.
8. [HKEY_CLASSES_ROOT\.htm]
9. @="htmlfile"
10. [HKEY_CLASSES_ROOT\.html]
11. @="htmlfile"
12. [HKEY_CLASSES_ROOT\.shtml]
13. @="htmlfile"
14.
15. [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\htmlfile\shell\open\command]
16. @="\"C:\\Program Files (x86)\\Internet Explorer\\iexplore.exe\" -nohome"
17. [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\htmlfile\shell\opennew\command]
18. @="\"C:\\Program Files (x86)\\Internet Explorer\\iexplore.exe\" %1"
19.
20. [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.htm]
21. @="htmlfile"
22. [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.html]
23. @="htmlfile"
24. [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\.shtml]
25. @="htmlfile"
26.
27. [-HKEY_CURRENT_USER\SOFTWARE\Classes\htmlfile]
28. [-HKEY_CURRENT_USER\Software\Classes\.htm]
29. [-HKEY_CURRENT_USER\Software\Classes\.html]
30. [-HKEY_CURRENT_USER\Software\Classes\.shtml]
展开阅读全文