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

DebuggingVisual Studio-2008Wow64

Debugging Problem Overview


I am getting a mysterious error from time to time that I just don't get. I can "fix" it by restarting Visual Studio 2008, but that isn't exactly a solution...

It states the following:

>Error while trying to run project: Unable to start debugging. > >The Microsoft Visual Studio Remote Debugging Monitor has been closed on the remote machine.

I am not doing anything remote, as far as I know... Just running regular debug, F5 style. What does it mean? How can I fix it?

Error dialog

Debugging Solutions


Solution 1 - Debugging

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.)

I hope this helped or can assist you in searching out a better answer.

Solution 2 - Debugging

I had same issue with asp.net development on VS2010. It was an issue on my IIS. I had not go to command prompt had to iisreset. Otherwise just simply reset iis on iis management window. It fixed the issue for me.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionSvishView Question on Stackoverflow
Solution 1 - DebuggingSteve SteinerView Answer on Stackoverflow
Solution 2 - DebuggingTeoman shipahiView Answer on Stackoverflow