Following question describe for windows H开发者_如何学编程ow to create minidump for my process when it crashes?
I\'m having a problem with some of my apps. It\'s a wcf-based app running under IIS6 in Windows 2003 Server (x86):
I\'ve found a number of posts on how to create a crash dump manually when required, but what I would like to do is ensure that a crash dump is produced when a monitored application crashes.
I\'m working on generating minidumps for my managed app. Here\'s what I have so far: I\'ve set up an exception filter as in this article. In the filter I call MiniDumpWriteDump.
I am working on a mixed-mode app (C++/CLI, C++, some C#) and when it crashes in the field a memory dump gets created. I usually get these dumps from the customer and try to figure out what went wrong.
I\'m calling MiniDumpWriteDump from .NET to generate a minidump, and that works fine. However, when I load the resulting dump into VS 2010, I don\'t see any useful info. In particular, the Call Stack
I am using Google Breakpad to generate crash dumps for my windows application when it crashes. My application mixes C++ native code with C# CLR code.
Our C# application calls MinidumpWriteDump upon an unhandled exception. I have received some crash dumps from users where i cannot seem to open the crash dump with SOS and see the exception that caus
I just recently started looking at dump files to help me analyze crashes of the w3wp process on our production environment at work...
For a production Win2003 web server, I\'d like to be able to allways log minidumps whenever the w3wp.exe processes crash...I\'ve read the documentation for ADPLUS, and have xcopy-deployed it to the pr