Most people may have experienced the system blue screen problem, but most people do not know how to deal with the blue screen problem, here mainly to do some explanation of the system blue screen, and introduce the blue screen problem analysis tool WinDbg analysis blue screen problem general steps.
Microsoft's official definition of the blue screen is that when the system encounters something that could threaten the security of the system, the system stops working, and the State (that is, the blue screen) is called bugcheck, which is the bug check. A typical cause of a blue screen might be a system crash, a system kernel error, or another program that causes the system to stop working.
System blue screen is actually a system of computer protection mechanism, when the system detects a serious threat may lead to system or hardware security, then will stop work to play a protective role. So here is also the elimination of everyone on the blue screen misunderstanding.
When the system is blue screen, the system will record some of the current working status of the system and save to the pre-set blue screen log in the dump file, so that the user to analyze the cause of the blue screen.
Possible causes of blue screen:
驱动问题:坏的驱动,未签名的驱动,软件的驱动,不兼容的驱动等。
Hardware problems: Memory problems, disk problems, etc.
Code error: System core code, application code.
Other
Blue Screen Solution:
1) 检查最近对系统是否做了什么改动,比如安装新的应用程序,更新,硬件改动等。 2)用WinDbg工具进行dump文件分析,查找蓝屏原因。
Reference
Using WinDbg to analyze blue screen dump causes