vote up 16 vote down star
13

After being troubled by an issue that I simply did not have the knowledge to debug, I've just decided that I have to learn how to use Windbg. My only problem: I have no clue where to start :-( I'm not really a WinApi-Guy, having use languages that abstract the Windows Api away from me usually.

So I just wonder: What is the best souce (Book, Website) to learn Windbg for someone who knows programming but not much about the inner depths of Windows? (And yes, I do read oldnewthing every day :))

flag

6 Answers

vote up 9 vote down check

For a book, try

Advanced Windows Debugging (Addison-Wesley Microsoft Technology Series)

Advanced  Windows Debugging

Also, for a great reference sheet, see

Common WinDbg Commands (Thematically Grouped) by Robert Kuster.

link|flag
This book is essential if you want to get the most out of windbg. – LanceSc Oct 13 '08 at 17:15
vote up 9 vote down

There's a few excellent blogs out there that help to gain windbg proficiency on an everyday basis:


I, personally, just started using windbg for all my debugging tasks and soon enough there were very questions I could not answer and very few problems I could not solve. Powerful and exciting tool.

link|flag
Could you edit the addresses above to make them clickable links? Thanks.. :) Very helpful.. :) +1.. – krebstar Jan 23 at 2:49
vote up 3 vote down
  • Advanced Windows Debugging by Hewardt and Pravat (best for general Win32 stuff)
  • Debugging .Net 2.0 Applications by John Robbins (if you need SOS for .Net)
  • The NT debugging blog (quite low level but they've just posted a good set of links.
link|flag
vote up 2 vote down

A great blog to check out is If broken it is, fix it you should. There's actually some posts on getting started in WinDbg.

link|flag
vote up 0 vote down

Debugging .NEt Applications has a chapter on how to use WinDbg

link|flag
vote up 0 vote down

My first experience with a debugger (actually soft ICE) has been a ... well ... sort of crack. There are some guide on the net about how to use a debugger to search for events and bypass/change program behavious. Once you've mastered the basic debugger skills, you can take any simple application (or your own applications) and play with it.

(This is just one of the guides i was talking about: http://www.woodmann.com/krobar/other/patch36.txt )

link|flag

Your Answer

Get an OpenID
or

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