Remote debugging with visual studio and WinDbg server

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

+6
debugging visual-studio native windbg
source share
1 answer

No, It is Immpossible. WinDbg and Visual Studio use different protocols for remote debugging, which are incompatible.

I am more familiar with the Visual Studio protocol, which is based on RPC + COM. I am less familiar with WinDbg, but I believe this is a lower protocol. Usually you just need to open the TCP port for WinDbg.

+4
source share

All Articles