WinDbg: Difference between revisions

From Omnia
Jump to navigation Jump to search
No edit summary
Line 53: Line 53:


Note there may also be a C:\Windows\Minidump\xxxxx-xxxx-xx.dmp
Note there may also be a C:\Windows\Minidump\xxxxx-xxxx-xx.dmp
== Debug Crash Dump ==
https://i.imgur.com/wA4BZ5N.png


== keywords ==
== keywords ==

Revision as of 18:15, 26 September 2025

WinDbg

https://learn.microsoft.com/en-us/windows-hardware/drivers/debugger/

WinGet

See WinGet

winget install Microsoft.WinDbg

Choco

WinDBG part of SDK now.

https://community.chocolatey.org/packages/windows-sdk-10-version-2004-windbg
choco install windows-sdk-10-version-2004-windbg

--

Obsolete - https://community.chocolatey.org/packages/windbg

Memory Dump Options

System failure:

  • [X] Write an event to the system log
  • [ ] Automatically restart

Write debugging information:

  • (none)
  • Small memory dump (256 KB)
  • Kernel memory dump
  • Complete memory dump <-- much more details
  • Automatic memory dump <-- default
  • Active memory dump

Dump file:

%SystemRoot%\MEMORY.DMP

Others:

  • [ ] Overwrite any existing file
  • [ ] Disable automatic deletion of memroy dumps when disk space is...

u2xGuUh.png

aNiLtEX.png

IhRs5pW.png

-

Note there may also be a C:\Windows\Minidump\xxxxx-xxxx-xx.dmp

Debug Crash Dump

wA4BZ5N.png

keywords