RE: [windbg] : [windbg] Using virtual serial port for non-kernel debugging?

> for examples using a virtual serial port, but I can’t seem to find

examples for non-kernel debugging using serial port. What’s the best

You can use kernel debugger for udermode debugging.

Place a breakpoint into your application (either _asm int 3 or

call to DebugBreak()/DbgBreakpoint()). If you run that app

in the VM, while kernel debugger is active, the operating system

will break into the debugger.

Or, can??t you install debugger into the VM?

L.