Search Results

4
votes
2answers
949 views

best technique for launching a windbg user-mode remote debugging session

What is your favorite technique for launching a windbg user-mode remote debugging session? Why is do you prefer this technique over other techniques? (pros/cons) There are at least four dif …
1
vote
4answers
140 views

Biggest windbg pet peeve

What is your biggest pet peeve related to the windbg debugger from microsoft? (note: I actually really like windbg if I ignore the unpolished UI.) …
3
votes

What does the PDB get me while debugging and how do I know it’s working?

The pdb contains information the debugger needs in order to correctly read the stack. Your stack traces will contain line numbers and symbol names of the stack frames inside of the modules for whi …
0
votes

best technique for launching a windbg user-mode remote debugging session

I tend to use option 4 (-server) because it is the only one that doesn't "pop" when you break into the kernel debugger long enough for the TCP connection to timeout. But this is more complex and no …
0
votes

Biggest windbg pet peeve

The ridiculous behavior when you attempt to use click-drag to select text on a line that is wider than its physical window. The pieces of the history window that I need to copy/paste into b …
0
votes

Biggest windbg pet peeve

Key presses are ignored while the focus is in a source window. It's not like you can edit the source code from inside windbg. At least there's the Alt-1 workaround. …
0
votes

Biggest windbg pet peeve

How insanely slow .kdfiles copies new binaries across the 1394 connection. It can take up to one minute for a large dll. …
3
votes

What is your favourite Windbg tip/trick?

The "tip" I use most often is one that will save you from having to touch that pesky mouse so often: Alt-1 Alt-1 will place focus into the command window so that you can actually type a co …
2
votes

Which Visual Studio debugger features are missing from WinDbg?

A polished UI is a feature. Windbg somewhat lacks this feature. But that only matters when UI "bugs" slow me down, and that's not really very often. …