x86 Remote Debugger Service on x64

前端 未结 8 1048
慢半拍i
慢半拍i 2021-01-04 19:40

Is it possible to install the x86 Remote Debugger as a Service on a 64bit machine? I need to attach a debugger to managed code in a Session 0 process. The process runs 32b

8条回答
  •  -上瘾入骨i
    2021-01-04 19:53

    This works on my machine(TM) after installing rdbgsetup_x64.exe and going through the configuration wizard:

    sc stop msvsmon90
    sc config msvsmon90 binPath= "C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\Remote Debugger\x86\msvsmon.exe /service msvsmon90"
    sc start msvsmon90
    

提交回复
热议问题