A debugger is already attached

Today is the last day that all the laptops of winXP OS should be upgrade to
WIN7. After updated. when i tried to debug my application,i received this error
message.(My application runs environment: win7+vs2010+IE10.)

"Attaching the Script debugger to process ‘iexplore.exe‘ on machine ‘‘
failed. A debugger is already attached."

i searched this issue on the internet. it was found that this is the problem
when you upgrade you IE version to IE10. Below is the solution. marked this
as memo in english due to the Chinese typewriting  is collapsed

  • In IE Advanced settings, under browsing remove the tick on "Disable script
    debugging (Internet Explorer)"

  • Running this in command prompt (with administrator rights): -

    regsvr32.exe "%ProgramFiles(x86)%\Common Files\Microsoft
    Shared\VS7Debug\msdbg2.dll

  The combination of these 2 and a browser restart of course fixed it for
me.

时间: 2024-08-01 16:56:06

A debugger is already attached的相关文章

android watchDog 机制

Android 平台实现了一个软件的WatchDog来监护SystemServer.SystemServer无疑是Android平台中最重要的进程了,里面运行了整个平台中绝大多数的服务. SystemServer退出反而问题不大,因为 init进程会重新启动它,但是它死锁就麻烦了,因为整个系统就没法动了.所以我们需要使用看门狗来监护它,当很长一段时间没有喂狗,就会重启SystemServer进程. WatchDog的作用: 1).接收系统内部reboot请求,重启系统. 2).监护SystemS

Windbg非侵入性调试(用户模式)

如果用户模式应用程序已经在运行,调试器可以非侵入性地对其进行调试.对于非侵入性调试,您没有那么多的调试操作.但是,您可以最小化调试器对目标应用程序的干扰.如果目标应用程序已停止响应,则非侵入性调试非常有用.在非侵入性调试中,调试器实际上并不附加到目标应用程序.调试器挂起目标的所有线程,并可以访问目标的内存.寄存器和其他此类信息.但是,调试器无法控制目标,因此g(Go)等命令不起作用.如果尝试执行非侵入性调试期间不允许的命令,则会收到一条错误消息,指出“The debugger is not at

How do I determine if I'm being run under the debugger?

#include <assert.h>#include <stdbool.h>#include <sys/types.h>#include <unistd.h>#include <sys/sysctl.h> static bool AmIBeingDebugged(void) // Returns true if the current process is being debugged (either // running under the

【JVM】【linux】linux上执行jmap命令查看JVM内存使用情况,报错:sun.jvm.hotspot.debugger.NoSuchSymbolException: Could not find symbol &quot;gHotSpotVMTypes&quot; in any of the known library name

运行命令: jmap -heap 6709 报错如下: Attaching to process ID 6709, please wait... sun.jvm.hotspot.debugger.NoSuchSymbolException: Could not find symbol "gHotSpotVMTypes" in any of the known library names (libjvm.so, libjvm_g.so, gamma_g) at sun.jvm.hotsp

Can&#39;t bind to local 8700 for debugger报错和解决

[2016-02-15 22:37:17 - ddms] Can't bind to local 8700 for debugger报错和解决 1.打开studio monitor是出错: Can't bind to local 8700 for debugger 2.netstat -apn |grep 8700(或者netstat -apo|findstr 8700)查询,得到的结果是: tcp6 0 0 123.0.0.1:8700  :::*     LISTEN   3665/java

Android debug时一直处于waiting for debugger解决办法

问题:android 调试卡在:Waiting for Debugger - Application XXX is waiting for the debugger to Attach" 解决方法 (1)解决方法:重启adb. 步骤:cmd进入命令行,进入adb所在目录先后执行adb kill-server,adb start-server. (2)避免打开多个Eclipse,可能产生冲突 (3)第三方工具导致,我使用了前面两种方法都不管用,最终关掉360手机助手后就可以了.  关闭方法:在任务

IntelliJ运行下载的Servlet时报错 Error running Tomcat 8.5.8: Unable to open debugger port (127.0.0.1:49551): java.net.SocketException

学习Java Servlet时,从Wrox上下载了示例代码,准备run/debug时发现以下错误: Error running Tomcat 8.5.8: Unable to open debugger port (127.0.0.1:49551): java.net.SocketException "Socket closed" /Users/GuQiang/Tomcat/apache-tomcat-8.5.8/bin/catalina.sh stopUsing CATALINA_B

PKCS7 的 attached 和 detached 方式的数字签名

搜遍了整个网络,都没有详细的说明.只在一个页面上有介绍,还模棱两可的,地址是:http://docs.oracle.com/cd/E19398-01/820-1228/gfnmj/index.html 后来分析了代码才找到它们的不同. 1. attached 方式是将签名内容和原文放在一起,按 PKCS7 的格式打包.PKCS7的结构中有一段可以放明文,但明文必需进行ASN.1编码.在进行数字签名验证的同时,提取明文.这里的明文实际上是真正内容的摘要. 2. detached 方式打包的 PKC

HSDB - HotSpot debugger

HSDB 是专门用于调试 HotSpot VM 的调试器,它是一个图形化界面.与之对应的还有个 CLHSDB-Command Line HotSpot Debugger,命令行调试界面.下面是启动命令: java -cp .;%JAVA_HOME%/lib/sa-jdi.jar sun.jvm.hotspot.HSDB # 启动图形界面 java -cp .;%JAVA_HOME%/lib/sa-jdi.jar sun.jvm.hotspot.CLHSDB # 启动命令行界面 启动 HSDB 后