I am trying to remotely debug a service using visual studio 2005.
When I run msvsmon.exe as an application, I get the user interface, and I can change it to noauth and anyuser, and then when I try to connect to the process from visual studio remotely, I get the message erro, t joining the process being executed in a session in which msvsmon.exe is not running. The service session is 0.
Therefore, I can successfully start msvsmon.exe as a service, but I cannot configure it in / noauth and / anyuser mode.
binPath for the service: "c: \ Program Files \ Microsoft Visual Studio 9.0 \ Common7 \ IDE \ Remote Debugger \ x86 \ msvsmon.exe" / service msvsmon90
both / noauth and / anyuser are command line switches for msvsmon.
Filling in the "startup parameters" in the service properties window does not affect anything.
change binPath service to:
"c: \ Program Files \ Microsoft Visual Studio 9.0 \ Common7 \ IDE \ Remote Debugger \ x86 \ msvsmon.exe" / service msvsmon90 / noauth / anyuser
also does not work (because the service does not start properly).
How to make the remote debug monitor work as a service in noauth and anyuser mode?
source
share