Remote Debugging in Visual Studio (VS2008), Windows Forms Application

前端 未结 6 1025
半阙折子戏
半阙折子戏 2021-01-30 17:35

I\'m trying to Remote Debugging a Windows Forms Application (C#), but i\'m always getting this error:

Unable to connect to the Microsoft Visual Studi

6条回答
  •  Happy的楠姐
    2021-01-30 18:00

    This is how it worked for me:

    Remote computer: Microsoft Virtual PC, "IHS\RDM" attached to my corporate domain, logged in as jdoe, administrator account.

    Local computer: Attached to local domain, logged in as jdoe, administrator account.

    1) remote computer: install rdbgsetup.exe (from Visual Studio 2005\Disk 2\Remote Debugger\x86)

    2) Remote computer: RUNAS /user MYDOMAIN\jdoe /netonly msvsmon

    3) Remote computer: msvsmon->Tools->permissions add user "MYDOMAIN\jdoe" (I have to do this every time I re-start)

    4) local computer: run msvsmon.

    5) local computer, msvsmon->Tools->permissions, add object types: "computers", "IHS\RDM"

    6) local computer, vs2005->debug->attach to process. Transport: Default, Qualifier: jdoe@RDM

    7) Refresh, and voila; a process list!

提交回复
热议问题