vote up 0 vote down star

Hi

Can any one tell me how to use the WinDbg .

I am created an Application it is works fine in one machine.when i try to run on another machine it fails how can i debug it using windbg.

flag

36% accept rate
What programming language are you using, and is it managed or native code? – MarkJ Jul 21 at 17:49
COM and UnManged c++ – Cute Jul 22 at 5:23

1 Answer

vote up 5 vote down

Start by downloading WinDbg from: http://www.microsoft.com/whdc/devtools/debugging/default.mspx

You can install it on the target machine, and it will be listed on the Start menu under "Debugging Tools for Windows".

The general idea is to start your application, start WinDbg, attach to your app process, and run under the debugger. Try to provoke the failure and inspect the state of the process with the debugger.

The most common commands are available from the menus, and the help file is excellent for discovering the rest.

Here's a tutorial to get you started: http://www.codeproject.com/KB/debug/windbg_part1.aspx

link|flag

Your Answer

Get an OpenID
or

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