1. Install WinDbg - Debugging Tools for Windows

jcgriff2

Co-Founder / Admin
BSOD Instructor/Expert
Microsoft MVP (Ret.)
Staff member
Joined
Feb 19, 2012
Posts
21,541
Location
New Jersey Shore
Windows8LOGO_200x67.jpg

44817
Install WinDbg - Debugging Tools for Windows

To install Windows SDK Debugging Tools for Windows, please follow these instructions:

Info


WinDbg - Debugging Tools for Windows

Microsoft Windows Debugger (WinDbg) is a powerful Windows-based debugger that is capable of both user-mode and kernel-mode debugging. WinDbg provides debugging for the Windows kernel, kernel-mode drivers, and system services, as well as user-mode applications and drivers.

WinDbg uses the Visual Studio debug symbol formats for source-level debugging. It can access any symbol or variable from a module that has PDB symbol files, and can access any public function's name that is exposed by modules that were compiled with COFF symbol files (such as Windows .dbg files).

WinDbg can view source code, set breakpoints, view variables (including C++ objects), stack traces, and memory. Its Debugger Command window allows the user to issue a wide variety of commands.

We primarily use WinDbg to process post-mortem kernel memory dumps to help OPs solve their BSOD epidemics.

Symbol files are obtained from the Microsoft MSDL Symbol server (more on this later).




Warning


Additional SDK requirements

Installation on Windows 8.1 and earlier operating systems requires KB2999226. To install through Windows Update, make sure you install the latest recommended updates and patches from Microsoft Update before you install the Windows SDK.




To install Windbg, click on DOWNLOAD THE INSTALLER (about ΒΌ-way down the page on the left) -
Windows 10 SDK (Windbg) -
Windows 10 SDK - Windows app development EDIT: See post #2


44855



Your choice -

44857




Accept the terms -

44858




Install - uncheck ALL boxes except for Debugging Tools for Windows -

44859





Go to - 2. Set Windbg File Associations
 

Attachments

  • 1552156402144.png
    1552156402144.png
    15.6 KB · Views: 64
  • 1552282135662.png
    1552282135662.png
    47.4 KB · Views: 71
Last edited by a moderator:
I recommend the older version because it gives the results consistent with when the assignments were created. The newer versions sometimes miss out lines of output that are present in the older versions. Also we have seen different failure bucket results.

In practice I use the older version for WinDBG and run the WinDBG Preview version to see the latest.
 

Has Sysnative Forums helped you? Please consider donating to help us support the site!

Back
Top