最近打开一个WORD文档,发现想跳转到目录指定的那个链接页时会弹出提示,说“由于本机限制,该操作已被取消。请与系统管理员联系”。经上网查询后发现,出现这种问题多半是因为电脑里安装了多个浏览器,而各个浏览器为了将自己作为默认浏览器,会更改一些系统设置,导致出现这种问题。
解决方法有如下几种:
一、重置浏览器选项
如果使用的是IE版本是6以上,打开控制面板-》Internet 选项-》在“高级”Tab下会看到“重置Internet Explorer设置”的选项,点击重置按钮。
解决方法有如下几种:
一、重置浏览器选项
如果使用的是IE版本是6以上,打开控制面板-》Internet 选项-》在“高级”Tab下会看到“重置Internet Explorer设置”的选项,点击重置按钮。
如果IE版本是6或更低,则重置按钮是放在了“程序”Tab里。
二、修改注册表参数如果第一种方法没有解决问题,比如说我,则需要修改注册表相关选项。如果机器是Win32的就将下面代码粘贴到记事本里,然后保存为reg格式文件。
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,则是
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\SOFTWARE\Classes\htmlfile\shell\open\command]
@="\"C:\\Program Files (x86)\\Internet Explorer\\iexplore.exe\" -nohome"
[HKEY_CLASSES_ROOT\SOFTWARE\Classes\htmlfile\shell\opennew\command]
@="\"C:\\Program Files (x86)\\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 (x86)\\Internet Explorer\\iexplore.exe\" -nohome"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\htmlfile\shell\opennew\command]
@="\"C:\\Program Files (x86)\\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]