我想以64位模式运行我的桌面IE选项卡。正如微软所描述的,我使用IE工具->高级选项启用了IE增强的保护模式。我还启用了“为增强的保护模式启用64位进程”。尽管如此,我还是无法看到IE标签在64位模式下运行。
注意:我在Windows8.1 64位机上使用IE11。
发布于 2014-02-03 09:06:12
我已经找到了解决办法。
实际上,我们必须启用UserAccountControl设置。我是通过在下面的EnableLUA 1键中添加
HKLM->Software->Microsoft->Windows->CurrentVersion->policies->System
发布于 2016-12-23 12:50:06
解决方案是在: HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main\TabProcGrowth中添加一个值为0的注册表项。
为Windows7和IE11工作(参见此处:https://support.microsoft.com/en-us/kb/2716529)
您可以使用reg文件而不是手动设置注册表项。只需将以下文本保存在名为key.reg
的文件中,双击即可执行:
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main]
"TabProcGrowth"=dword:00000000
发布于 2014-02-05 03:31:40
如果UAC关闭,那么增强保护模式不会做任何事情。
所以你应该试着打开UAC:
Open User Account Control Settings by clicking the Start button, and
then clicking Control Panel. In the search box, type uac, and then click
Change User Account Control settings.
To turn on UAC, move the slider up from the bottom position, to choose when you want to be notified, and then click OK. If you're prompted for an administrator password or
confirmation, type the password or provide confirmation.
https://stackoverflow.com/questions/21458588
复制相似问题