Method One:
Generally appear appcrash error, will be prompted the fault module name, such as XXXX.DLL, then we can Baidu this DLL belongs to which file, find the program, if it is not very important to uninstall it, to see if the failure will appear.
Method Two:
1, the use of cleaning software, such as 360 cleaning up ie plug-ins and other unused plug-ins;
2, then in the operation of the input Msconfig carriage return, in the start to cancel the startup, only the input method Ctfmon;
3, after the reboot to see whether there will be failure.
Method Three:
1, crash occurs, the system will generate dump file, dump file is the memory image of the process, Win7 on the dump file generally save C:windowsminidump directory, requires administrator privileges to access.
2, to analyze Crash through the dump file, you need to install WinDbg, in WinDbg, through the File→open Crash dump menu can open the dump file for analysis, as shown in the following figure:
After loading the dump file, enter it in the command bar at the bottom of the WinDbg:!analyze-v for analysis.! represents an extended command that is WinDbg, analyze is an extended command, and-V is a parameter.