Вопрос

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