Use the WinDBG debugger to fix the blue screen error
Network Administration - Have you ever wondered how to get more information from the blue screen of death when this error appears and give you a Stop: 0 × 00000000 message , before it hangs . This error message shows you a fairly serious operating system error that may be caused by some problems.
The Microsoft WinDBG utility will help you troubleshoot and diagnose the problem, then lead you to the root cause so you can fix the error.
Steps in a nutshell
- Create and capture memory dump related to the blue screen error you are trying to fix.
- Install, configure WinDBG and the path to the right Symbols folder.
- Use WinDBG to debug and analyze the screen dump, then find the root cause of the problem.
Create memory dump
Please note that, if you have not had a blue screen error, then you will not be able to capture memory dump.
1. Click WinKey + Pause .
2. Click Advanced , under Start Up and Recovery , select Settings .
3. Cancel Automatically Restart
4. Click the drop-down arrow under Write Debugging Information.
5. Select Small Memory Dump (64 KB) and make sure the output is % SystemRoot% Minidump .
6. Restart the computer, this will cause the system to fail and the blue screen appears, then create a Minidump.
Location of Minidump files can be found here:
C: WINDOWSMinidumpMini000000-01.dmp
To download and install Windows troubleshooting tools for your current version of Windows, visit the Microsoft tools website here.
Follow the prompts, when installing, take note of the Symbols location if you accept the default settings. We will create a directory and then direct the installation to that folder because we use WinDBG for two operating systems XP and Vista and want them to be separated and sorted separately.
Readers can refer to the Microsoft article here to learn how to read the memory dump files that Windows created for troubleshooting processes.
Set up and use WinDBG
1. Click Start | All Programs | Debugging Tools for Windows , and open WinDBG . Select File | Symbol file path and change it to suit your situation, then copy and paste it into the dialog box, as shown in Figure A, click OK . We suggest:
SRV * c: symbols * http:///msdl.microsoft.com/download/symbols
Or if you are using other Symbol:
SRV * c: Vistasymbols * http:///msdl.microsoft.com/download/symbols
SRV * c: XPsymbols * http:///msdl.microsoft.com/download/symbols
2. Close the workspace and save the workspace information, as shown in Figure B.
Figure B: Workspace
3. Open WinDBG and select File , select Open Crash Dump , then navigate to the minidump file created above, highlight it and select Open .
Click on:
! analyze -v
As shown in Figure C below Bugcheck Analysis.
Figure C:!analyze -v
Tip: If you look at the bottom of the screen, you will see kd>; Now type in the right box ! analyze -v or .lastevent and press Enter. It will show you an exception record and stack trace of the function where the exception appears.
You can also use the .exr, .cxr, and .ecxr commands to display exception records and content records.
When working with drives, you can use kd> lm tn, as shown in Figure D, to get more information.
[Ctrl] + [A] will allow you to copy the information and paste it into Notepad.
For example, look at the bottom of the page with the same information as shown in Figure E.
Conclude
The issue of a blue screen error is caused by the dial-up software installed from the USB modem. However, uninstalling this software will not solve the problem.
The problem here can be solved by using the WinDBG tool to debug and analyze the memory dump file. The fix is to rename C: WindowsSystemfldevice.sys to C: WindowsSystemfldevice.sys.old . The cause of the error here is that Windows still refers to this file even though the software has been uninstalled.
You should read it
- Who wrote the 'dead blue screen' message for Windows?
- Prevent 'blue screen errors' on Windows 8
- Ways to fix BSOD blue screen error
- How to fix Dxgmms2.sys xanh Blue Screen error
- How to fix WHEA Uncorrectable Error on Windows 10
- How to prevent blue screen error on Laptop, PC
- Blue screen death error has just passed 'age' 20
- How to fix blue screen error when printing on Windows 10
May be interested
- Blue screen death error has just passed 'age' 20blue screen death error first appeared 20 years ago, when bill gates and chris capossela are introducing new plug and play features for windows 98.
- How to fix blue screen error when printing on Windows 10microsoft has just instructed windows 10 users to temporarily fix blue screen problems when printing.
- Fix blue screen error on Windowsfix blue screen error on windows. the cause of blue screen errors is also very likely due to hardware or software conflicts. tipsmake.com will guide you some ways to fix blue screen error on windows, please follow along.
- How to fix blue screen error 'Critical Process Died' in Windows 10the frightening blue screen of death, known as bsod, has more than 500 error codes but critical process died stops the most recently. although windows 10 users are less prone to blue screen errors than previous versions of the operating system, they do occur and cause annoyance.
- 8 best Linux debugger tools for software engineersdebugger is an essential tool for finding errors in software. there are many good linux debuggers that make finding weaknesses in software easier for programmers.
- How to fix blue screen error 0x7B INACCESSIBLE_BOOT_DEVICE after updating on Windows 10many users encounter a stop error, also known as a blue screen error 0x7b inaccessible_boot_device after using windows updates to update on windows 10/8/7. microsoft has come up with a number of solutions to help users solve this problem.
- How to create a blue screen of death (BSOD) to 'prank' friendsthe deadly blue screen error, also known as the blue screen of death (bsod), is one of the most common errors for windows users. if bsod appears, your system is having a serious error.
- How to find the cause of blue screen death and Minidump errors?when windows crashes, a blue screen of death will appear on the screen - aka bsod in a few seconds and then the computer will restart after a few days. the bsod screen contains a short description of the stop error and some general instructions to fix the crash.
- Intel confirmed that the blue screen error on Windows 11 is due to the Wi-Fi driverrecently, intel officially confirmed that the recent problem causing windows 11 to encounter a blue screen of death (bsod) error is due to their new wi-fi driver.
- Instructions on how to fix blue screen errors on computers running Windowsduring a long time using windows, surely many times you will encounter the case of a blue screen error, also known as a bsod. this is probably the biggest obsession for windows users because we feel completely helpless because we do not know how to fix it.