zoukankan      html  css  js  c++  java
  • VS2008: Unable to start debugging, Remote Debugging Monitor has been closed

    今日编码,竟碰到这个问题:

    VS2008: Unable to start debugging, Remote Debugging Monitor has been closed。

    当时的解决办法很简单,重新启动Visual Studio 2008,再打开时,错误随风而去,不知所终。

    但我的好奇心促使我到网上看看有没有什么高人对这个问题有一个精深的讲解。下面这个来自Stack Overflow

    ---------------------------------------------------------------------------------------------------

    If you are on a 64bit OS then you are 'silently' remote debugging.

    Devenv runs in WoW64 (meaning it's a 32bit process) ... when you hit F5 is launchs msvsmon.exe as a 64 bit process and sets up a communication channel between devenv and msvsmon "silent remote debugging" to allow debugging your 64 bit process.

    Check task manager when you are successfully debugging and you should see msvsmon.exe running.

    If the above assumption (64bit OS) is correct, the error you are seeing is based on Visual studio getting into a bad state.

    If it gives this error while an msvsmon.exe instance is running ... kill that instance. If there is no msvsmon.exe running, then restarting devenv is probably your only option.

    Another possible workaround is to set your project to 'platform x86' so that you are directly debugging.

    The x86 compiled managed assemblies or native binaries will run in Wow64, and prevent any need for the silent remote debugging. (Obviously this doesn't help if it is a 64-bit only problem ... but in practice that is rare.)

    --------------------------------------------------------------------------------------------------



  • 相关阅读:
    基本的数据库操作类
    GridView 导出Excle
    VS2005 调试时断点无效的小问题
    TSQL日期相关
    Data Access Application Block 利用DataSet 操作DB
    vs2005 字体和颜色加载包失败,无法修改的问题
    GridView 编辑和删除的实现
    operamasksui之omGrid简单使用
    ANT简明教程
    ANT从入门到精通
  • 原文地址:https://www.cnblogs.com/piaoger/p/2113221.html
Copyright © 2011-2022 走看看