0
votes
2answers
149 views

Debugging the C crash dump on Windows x64

There is a crash dump (FULL dump created by setting LocalDump registry key as explained here) that got created on a Windows x64 2008 R2 machine and I am able to debug this dump file using VS 2010 on ...
1
vote
2answers
540 views

How to analyze WER collected crash dump of .NET application with VS2010?

I have an NET 4.0 application which causes an unhandled exception when run. When I run it from VS2010 it breaks on exception line and I can save dump. When I load the dump later I get exactly to the ...
0
votes
1answer
1k views

Periodic W3WP.exe crash

I have ASP.NET application. Periodicaly it is down and make my users unhappy. In log I see: Faulting application name: w3wp.exe, version: 7.5.7601.17514, time stamp: 0x4ce7afa2 Faulting module ...
0
votes
1answer
367 views

how to programmatically create dump file using pure C language?

I need to create a dump file for a customer program written in C. I saw that there is a minidump for windows, is it working only on C++ ? Is there any other solution for C language? Thank you for ...
2
votes
1answer
235 views

Programmatically read memory from win32 dump file

I have a Win32 core dump (full dump, with memory) of a process crash which was caused by a heap corruption. I have full symbols and sources, so opening the dump in the debugger is not a problem. I'm ...
0
votes
2answers
355 views

dump reader can't find symbol files

I'm trying to learn about reading dump files, so I made my small APP crush, and created a dump for that process from task manager. I tried to open the .dmp file, both from VS10 and windbg.exe, and ...
2
votes
1answer
2k views

Using WinDbg to analyze .NET dump

I am using windbg to perform an analysis on a dump. Following are the commands that I have ran .loadby sos mscorwks - to load the sos dll ~* e !clrstack - to look at all the threads ~18s - changed ...
1
vote
2answers
473 views

Windbg Dump Generated Progamatically Can't Be Debugged

I have a simple program: int ExecuteCommand(wchar_t* commandLine) { STARTUPINFO si; PROCESS_INFORMATION pi; BOOL bRet; DWORD lpExitCode; memset(&si, 0, sizeof(si)); ...
6
votes
1answer
3k views

minidump vs. fulldump?

I just recently started looking at dump files to help me analyze crashes of the w3wp process on our production environment at work... And I would like to know, what are the differences between a ...
3
votes
2answers
3k views

Visual Studio 2008 not loading symbols when debugging a .DMP

I'm trying to debug a C# application from a .DMP file and I have the executable, the DLLs and the PDBs all in a folder called "MyFolder." I set the directory containing the source code to C:\MyFolder\ ...
1
vote
2answers
7k views

Crash dump - resolve unmanaged code crash in a .NET application using WinDbg

I'm trying to discover the WinDbg tool to analyze a crash dump we have on our production server. When I run !analyze -v, I get: 0:000> !analyze -v ...
2
votes
2answers
566 views

Is there a way to know the thread id in another process which throws an exception?

I am trying to use MiniDumpWriteDump() API to dump a crashed process B from another process A. I am doing this because MSDN said so: MiniDumpWriteDump should be called from a separate process if ...
0
votes
1answer
45 views

What is my role when creating the memory dump?

I am studying how to use MiniDumpWriteDump() method to create minidumps. After I read some articles, I got the feeling that all I can do is to provide some callback function and various flags to tell ...
3
votes
4answers
999 views

Win32: Is there a difference between Dr. Watson's full/mini dumps and writing my own?

I have an application that is occasionally crashing in the release build; unfortunately, it looks like it is crashing in a 3rd party DLL. While trying to get a handle on it I've been swimming in a ...
0
votes
3answers
688 views

How can I take a dump file for Winforms application

I have a C# application which is crashing for unknown reason. For understanding the issue, i want to take a dump file for it. How can i do it? many thanks, Oz.
0
votes
1answer
1k views

Dump Analysis with Source, using Visual Studio 2008 Express?

Is there any way to analyze app-crash minidumps (e.g. created by SetUnhandledExceptionFilter, or minidumpwritedump()) with source, using Visual Studio 2008 Express? I generally do this at work ...