문제

Is there any way to detect process crash in windows 7 ? Just to clarify, upon every process crash windows creates the WERfault.exe ( windows error reporting) . I have driver which monitors the system by using the existing kernel callback mechanism of the kernel. The callback notifies my driver when a certain process event happens (using PsSetCreateProcessNotifyRoutine). The problem is I see that WERfault.exe created by svchost.exe but I can't find a way resolving which process has crashed.

도움이 되었습니까?

해결책

Setup your application as the automatic debugger. This can then pass the event on the the real WER if you want to provide the usual UI.

다른 팁

->Is there any way to detect process crash in windows 7 ?

Yes, you can use AdPlus script can be used with command line. it can be use with windbg go for the documentation i think it may solve your problem. Adplus dump all your process memory into a file .

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top