问题描述
所以我在 VS2010 上使用 Win7 x64,并安装了 IE10 Win7 Preview 和 ReSharper 6.1.
So I am using Win7 x64 with VS2010 and have installed the IE10 Win7 Preview and ReSharper 6.1.
当我尝试开始调试时,我收到以下信息:
When I attempt to Start Debugging, I receive the following:
附加脚本调试器以处理[1111] iexplore.exe"机器 'MINE' 失败.调试器已附加."
我可以单击确定"并查看附加的调试会话 - [1111] 显示为灰色,并且还有另一个带有我的解决方案标题的 iexplore.exe 实例.我可以手动附加,它工作正常.
I can click OK and look at attached debug sessions - [1111] is grayed out and there is another instance of iexplore.exe with my solution title. I can attach manually and it works fine.
我想也许因为有两个 iexplore.exe pid 会出错,没有打开两个选项卡或窗口,我禁用了自动崩溃恢复.
I thought maybe since there were two iexplore.exe pids there would be something wrong, there are not two tabs or windows open and I disabled automatic crash recovery.
试过这个:附加脚本调试器来处理'[XXXX] 机器 'NAME' 上的 IEXPLORE.EXE' 失败
没用.
有什么想法吗?
推荐答案
针对 IE10 中的 JavaScript 调试问题有一个更简单的修复:
There is a simpler fix for the JavaScript debugging issue in IE10:
- 关闭浏览器
在提升的 cmd 提示符下运行以下命令:
- Close IE
In elevated cmd prompt run this command:
regsvr32.exe "%ProgramFiles(x86)%Common FilesMicrosoft SharedVS7Debugmsdbg2.dll"
(或 %ProgramFiles%
在 32 位操作系统上)
(or %ProgramFiles%
on a 32-bit OS)
这篇关于VS2010 和 IE10 将脚本调试器附加到处理 iexplore.exe 失败的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!