vote up 1 vote down star

Is it possible to use WinDBG as a server (instead of Visual Studio Remote Debugger) and connect to it using Visual Studio?

flag

50% accept rate

1 Answer

vote up 2 vote down check

No this is not possible. WinDbg and Visual Studio use different protocols for remote debugging that are not compatible.

I'm more familiar with Visual Studio's protocol which is RPC + COM based. I'm less familiar with WinDbg's but I believe it is lower protocol. Usually all you need to do is just open a TCP port for WinDbg.

link|flag
I've read somewhere that they are using the same debugging engine. If i can connect with WinDBG to a WinDBG server then I assume that I can use Visual Studio to do the same thing. – Bogdan Maxim Jun 24 at 13:03
@Bogdan, unfortunately the information you heard is incorrect. WinDbg and VS use very different debugging engines (100% different code bases). They do use the same underlying APIs and it is possible to host certain WinDbg plugins inside of Visual Studio but that's far as it goes (at least that I'm aware of). – JaredPar Jun 24 at 13:13

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.