Changes between Version 2 and Version 3 of Windows_Kernel_Debugging
- Timestamp:
- Jun 6, 2011 12:31:22 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Windows_Kernel_Debugging
v2 v3 22 22 1. Install Debugging Tools For Windows. You can install it as a stand-alone component from the Windows SDK in a way described [http://msdn.microsoft.com/en-us/windows/hardware/gg463009 here]. 23 23 - Both 32bit and 64bit versions of Debugging Tools could be used for debugging both 32bit and 64bit Targets. 24 1. Run the WinDbg debugger: "Start"->"All Programs"->"Debugging Tools For Windows"->"WinDbg".25 1. Setup WinDbg symbol paths: "File"->"Symbol File Path" -> in the "Symbol File Path" dialog enter "srv*c:\symbols*http://msdl.microsoft.com/download/symbols" (w/o quotes) in the edit box->"OK"24 1. Run the !WinDbg debugger: "Start"->"All Programs"->"Debugging Tools For Windows"->"!WinDbg". 25 1. Setup !WinDbg symbol paths: "File"->"Symbol File Path" -> in the "Symbol File Path" dialog enter "srv*c:\symbols*http://msdl.microsoft.com/download/symbols" (w/o quotes) in the edit box->"OK" 26 26 - NOTE: the C:\symbols here is the path of your downstream store, i.e. the path where the downloaded symbols would be stored/cached. You can use any path for that. 27 27 … … 34 34 35 35 === Host Computer === 36 1. Run the WinDbg debugger: "Start"->"All Programs"->"Debugging Tools For Windows"->"WinDbg".36 1. Run the !WinDbg debugger: "Start"->"All Programs"->"Debugging Tools For Windows"->"!WinDbg". 37 37 - NOTE: you need to run it with elevated privileges (i.e. "Run As Administrator") the first time you want to setup a 1394 kernel debugging so that it is able to install the necessary 1394 debugging driver. 38 1. For 1394 debugging: in WinDbg do: "File"->"Kernel Debug"->open "1394" tab and type "10" (w/o quotes) in the "Chanel" edit box->press "OK"39 - The first time you do it you'll see some progress while WinDbg is installing the 1394d driver.38 1. For 1394 debugging: in !WinDbg do: "File"->"Kernel Debug"->open "1394" tab and type "10" (w/o quotes) in the "Chanel" edit box->press "OK" 39 - The first time you do it you'll see some progress while !WinDbg is installing the 1394d driver. 40 40 - Finally windbg should print something like 41 41 {{{ … … 49 49 50 50 == Common Kernel Debugging Tasks == 51 NOTE: unless otherwise specified all the tasks here list the WinDbg commands that should be entered in a debugger command window.51 NOTE: unless otherwise specified all the tasks here list the !WinDbg commands that should be entered in a debugger command window. 52 52 The command window becomes active only when the debuggee is break in the debugger. 53 53 To force the target system to break use <ctrl>+<break>, to resume use "g" command (in a debugger command window ofc) 54 54 55 === Creating a dump file with WinDbg ===55 === Creating a dump file with !WinDbg === 56 56 1. Minidump 57 57 {{{ … … 62 62 .dump /f <dump\file\path\on\the\host\system.dmp> 63 63 }}} 64 1. Kernel memory dump - it's not possible to do that with WinDbg64 1. Kernel memory dump - it's not possible to do that with !WinDbg