Windows

How to Create Live Kernel Dumps in Windows 11

Richard
Written by
Richard
Sep 16, 2022 Updated Apr 30, 2026 3 min read
How to Create Live Kernel Dumps in Windows 11

Sometimes your computer acts strangely, but it does not crash completely. A live kernel dump is a way to take a snapshot of what your computer’s brain (the kernel) is doing at that exact moment. You can do this without turning off your PC. Unlike a full crash dump which happens when the system stops working, a live kernel dump captures data while the operating system is still running.

Why do this?

You use this to fix problems without needing to reboot. It helps you catch errors in things like your video card or Wi-Fi settings while the computer is still running. It saves you time and keeps your work open. It is particularly useful for debugging bug check code 0x161 or other non-fatal system hangs.

What happens when done?

Windows creates a file that contains information about your system’s memory. You can then look at this file later to figure out why your computer was acting up. This file is a kernel memory snapshot that helps developers and IT pros identify the root cause of system instability.

How to Create a Live Kernel Dump

Note: This process requires administrator privileges.

  1. Open Task Manager by pressing CTRL + SHIFT + Esc on your keyboard.
  2. Click on the Details tab.
  3. Windows 11 Task Manager Details tab for live kernel dump
  4. Right-click on any empty space in the list of processes.
  5. Select Create live kernel dump file.
  6. Choose either Full live kernel dump or Kernel stacks dump.
  7. Creating a live kernel dump file in Windows 11
  8. A box will appear showing you where the file was saved.
  9. Click OK to close the box.
  10. Click Open file location to go to the folder where the dump file is saved in C:\Windows\System32\LiveKernelReports.

Advanced Methods: Command-Line and Tools

Beyond Task Manager, you can use advanced debugging tools. The ProcDump utility from the Sysinternals suite is a powerful alternative. You can also use the Windows Error Reporting (WER) service to trigger these dumps manually. For deep analysis, professionals use WinDbg to inspect the memory dump file location.

Analysis and Debugging

Once you have the file, you need to analyze it. You can open the .dmp file in WinDbg. This allows you to run commands to see which driver or process caused the system to hang. Refer to the official Microsoft documentation for advanced debugging resources.

Summary

  • A live kernel dump lets you troubleshoot your PC while it is still running.
  • This method helps fix hardware issues like video or network hangs without a full restart.
  • The feature is built into the Task Manager for users on build 25197 or higher.
  • It creates a diagnostic file that stores information about your system memory, typically found in C:\Windows\System32\LiveKernelReports.
  • Always use tools like WinDbg for professional-grade dump file analysis.

Where are live kernel dumps stored by default in Windows 11?

By default, Windows 11 saves these diagnostic files in the C:\Windows\System32\LiveKernelReports folder. You must have administrative rights to access this directory and view the generated memory dump files. Always check this specific path if you are looking for recent snapshots created by the system or manual triggers.

Does creating a live kernel dump impact system performance?

Creating a live kernel dump has a minimal impact on system performance. While the system captures the memory state, you might notice a very brief pause. However, it does not require a reboot or stop your active programs, making it a safe way to troubleshoot system stability issues.

Was this guide helpful?

Tags: #Windows 11
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

2468 articles → Twitter

📚 Related Tutorials

How to Use Task Manager on Windows 11
Windows How to Use Task Manager on Windows 11
How to Enable or Disable Task Manager in Windows 11
Windows How to Enable or Disable Task Manager in Windows 11
How to Keep Windows 11 Task Manager Always on Top
Windows How to Keep Windows 11 Task Manager Always on Top
How to Check Graphics Card Details on Windows 11
Windows How to Check Graphics Card Details on Windows 11

Leave a Reply

Your email address will not be published. Required fields are marked *