Open Kernel Crash Dumps in Visual Studio 11
Join the DZone community and get the full member experience.
Join For Freea dream is coming true. a dream where all the debugging you’ll ever do on your developer box is going to be in a single tool – visual studio.
in a later post, i will discuss device driver development in visual studio 11, which is another dream come true. for now, let’s take a look at how visual studio can open kernel crash dumps and perform crash analysis with all the comfy tool windows and ui that we know and love.
to perform kernel crash analysis in visual studio 11, you will need to install the windows driver kit (wdk) on top of visual studio. go on , i’ll wait here.
first things first – you go to file | open crash dump, and you’re good to go:
visual studio will load that dump file and open the initial analysis window – which is a new tool called debugger immediate window .
note that the threads window displays processors , and you can switch between processors to examine their call stack in the call stack window. finally, if you’re dead serious and want to run some real debugger commands, there’s command-line intellisense for debugger commands, complete with a documentation tooltip.
in case you’re wondering, there is still room for windbg as a standalone tool. the obvious difference between windbg and visual studio – other than usability – is installation size. you can copy windbg over to a machine or run it from a usb stick, which is amazing in a production environment. so no, windbg isn’t redundant yet, but visual studio has just earned itself some street cred in the most hardcore debugging circles.
Published at DZone with permission of Sasha Goldshtein, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Trending
-
Personalized Code Searches Using OpenGrok
-
Auditing Tools for Kubernetes
-
13 Impressive Ways To Improve the Developer’s Experience by Using AI
-
What Is JHipster?
Comments