http://www.appinn.com/blue-screen-search-code/
Blue Screen Code Finder – Find the culprit on the blue screen
11
Article Tags: windows/System/blue screen.
Blue Screen Code Finder can help you find out the cause of the BSOD and can go to the Microsoft Knowledge Base to query the solution, and the previous Bluescreenview mate is a good combination of blue screen troubleshooting. @Appinn
Simply fill in the error code in the use of shorthand, in addition to the Support Center in the blue screen cause analysis of the article links, interested children shoes can go to see.
Official website | From Niche software
Http://www.sqlead.com/post/121.html
Find out "murderer"--actual combat WinDbg analyze the cause of computer blue screenadmin Computer tips 2011-10-6 Sometimes Windows systems are often unexpectedly blue screen, a good blue screen troubleshooting solution and everyone to share.
The following is an example of Windows 7:
First step: Turn on the small memory dump feature
Right-click Computer---Properties----advanced system Settings-Advanced---Startup and recovery, open the Startup and Recovery tab, select the Small memory dump (64KB) option in the Write Debugging information drop-down list, such as:
Tip : Small memory dumps
When a memory dump is used for a system crash, the in-memory data dump is saved in a dump file, which is used by the relevant person for troubleshooting analysis. A small memory dump is a memory dump file that only stores 64KB of basic spatial data before memory. This saves disk space and makes it easy to view files.
Select "OK", so that the next time the operating system blue screen, will be recorded in the memory of the data, and stored as a dump file, the file is stored in the system disk MiniDump folder.
tip: Dump file
Dump files are used to debug drivers for driver writers, which must be opened with specialized tool software, such as with WinDbg.
Step two: Download and install WinDbg from Microsoft's website
WINDBG (click to download) is a Microsoft released a good source-level debugging tools, can debug dump files, here we use to find the cause of blue screen failure. At the time of installation, choose the "next step" on the line.
Step three: Diagnose blue screen errors with WinDbg
After the system restarts after a blue screen, a. dmp file with the date file name will appear under the MiniDump folder, which is the file we want to analyze. Next click on "Start menu → program →debugging tools for Windows (x86)-windbg", open the WINDBG program, click "File→open Crash Dump" in the program window, Open the. dmp file with the date file name under the MiniDump folder on the system disk:
Open after the program began to analyze the file automatically, after analysis, look at the bottom, find "Probably caused by" This line, the file behind it is the culprit that caused the blue screen.
Fourth step: Solve blue screen failure
We have led to the blue screen of this file name in the online search, basically know what the file, the general network also has relevant solutions, see what to remove plug-ins, patches or reload software and so on. For example, this Chinese analysis of the Myfault.sys file.
PS: The settings for Xp\vista and Win7 are similar. You can also use the blue Screen Code finder 1.1.3 can easily find out why.
Finally, a statistical analysis of the cause of the crash is attached to Microsoft, as shown in:
The picture shows that in most cases a third-party device driver causes Windows to crash.
Http://www.cnblogs.com/-clq/archive/2012/02/14/2350425.html
Find out "murderer"--actual combat WinDbg analyze the cause of computer blue screen