up vote 3 down vote favorite
share [g+] share [fb]

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

link|improve this question

44% accept rate
feedback

1 Answer

up vote 2 down vote accepted

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|improve this answer
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 '09 at 13:03
1  
@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 '09 at 13:13
feedback

Your Answer

 
or
required, but never shown

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