Retired Microsoft Blog disclaimer

This directory is a mirror of retired "Decrypt My World" MSDN blog and is provided as is. All posting authorship and copyrights belong to respective authors.
Original URL: https://blogs.msdn.microsoft.com/alejacma/2009/07/07/managed-debugging-with-windbg-help/
Post name: MANAGED DEBUGGING with WINDBG. Help
Original author: Alejandro Campos Magencio
Posting date: 2009-07-07T07:59:00+00:00


Hi all,

This post is a continuation ofMANAGED DEBUGGING with WINDBG. Prerequisites.

HELP

· I won’t explain every single detail on WinDbg or debugger extension commands. I don’t want to duplicate much info. I will mainly focus on which commands to use and how to use them depending on the circumstances, with samples.

Disclaimer: there could be several ways to combine the commands and get the same info. I will just show my way. There could be better ways, and I would love to know them. Thanks!

· If we don’t know how a command works we can get extensive help in other places:

We can get help on WinDbg and its commands in Debugger.chm help file. We can open this file directly from the debugger:

0:000> .hh

We can also see all commands in an extension:

0:000> !SOS.help

Or we can get help for just one command in an extension:

0:004> !SOS.help !command

We won’t only get the possible parameters. We will also get useful explanations and tips to use the commands. I suggest you take a look to the help of every single command you use.

Next post: MANAGED DEBUGGING with WINDBG. Preparing the Environment.

Index: MANAGED DEBUGGING with WINDBG. Introduction and Index.

Regards,

Alex (Alejandro Campos Magencio)


Share this article:

Comments:

Comments are closed.