Visual studio 2010 远程调试C#程序

日期:2015-6-12

环境

主机:Win7SP1 64bits、Visual studio 2010SP1

被调试机:Windows2013 32bits、

参考资料实现了对C#的远程调试,符合下面二点很重要,折腾了很久。。。

[1]被调试机启动Visual Studio Remote Debugging Monitor程序的帐号(用户名和密码)必须同主机一致。

[2]Visual Studio Remote Debugging Monitor程序的“Authentication mode”为“Windows Authentication”(即默认设置)。


总结

C#远程调试比C++简单,不需要Attach Process,直接在本地的VS中启动就可以了。


注意

两台计算机的帐户都属于Administrator group。


参考资料


《Error: The Visual Studio Remote Debugger service on the target computer cannot connect back to this computer》

https://msdn.microsoft.com/en-us/library/ms164725.aspx

http://blog.csdn.net/iamoyjj/article/details/6173781

你可能感兴趣的:(Visual studio 2010 远程调试C#程序)