Operating system blue screen solution

  

Every time the windows system fails, the corresponding log will be recorded. As long as the log is found and analyzed, the reason for finding the blue screen is easy.

Step1: Find logs, XP and Vista steps almost

Right-click on my computer — Advanced (Vista is Advanced System Settings) — Start and failback settings. The blue screen log may be in the Minidump folder, or it may be the MEMORY.DMP file, which is identifiable here in the startup and fault files.

At the bottom of this interface, there will be a path. If the display is: small memory dump (64K), the corresponding path is %SystemRoot%\\Minidump, and the blue screen log is saved in the Minidump folder. The real address is: system disk - windows folder - inside the Minidump folder.

There is also a possibility that when the blue screen is used, the operating system writes the data in the memory (including virtual memory) directly to the file to generate the MEMORY.DMP file, which is in the Windows directory. .

Step2: Find a log viewing software

The blue screen log file can only be viewed with special software. I can't use TXT. It is recommended to use Microsoft's official WinDbg, download address: Install Debugging Tools for Windows 32-bit Version Install Debugging Tools for Windows 64-bit Version

These two correspond to 32-bit and 64-bit systems, click to download The latest version is fine.

Step3: View the log

Run WinDbg— open crash dump, you can open the log file, this time you can see the blue screen log, which is the error code when the blue screen. However, at this time, I can't see which program caused the blue screen. Also need to type !analyze -v under WinDbg, remember to bring an exclamation point, then all the log files will be displayed.

Step4: Analysis Log

If you don't understand the log, it is recommended to look directly at the bottom of the log. There is a program name after IMAGE_NAME. This program triggers a blue screen. Search this file name + blue screen, you can usually find the root cause.

Copyright © Windows knowledge All Rights Reserved