Tagged Questions
A minidump is a file containing information about the state of a process, generally used for post-mortem debugging on Windows.
13
votes
5answers
375 views
Reducing the size of minidumps of managed programs while keeping some heap information?
With the dump debugging support in .NET 4.0 we are looking into automatically (after asking the user of course :) creating minidumps of C# program crashes to upload them to our issue tracking system ...
10
votes
4answers
4k views
How to create minidump for my process when it crashes?
I am not able to create minidump form my process by changing system setting. So my Question is
:
Will the system create a minidump for a user process when it crashes
If yes, which setting do I ...
10
votes
3answers
2k views
Capturing R6025 pure virtual call
I currently capture MiniDumps of unhandled exceptions using SetUnhandledExceptionFilter however at times I am getting "R6025: pure virtual function".
I understand how a pure virtual function call ...
8
votes
5answers
1k views
How to debug a WER minidump of an “ngen”ed image
When ngen is executed on a .NET managed application at installation time, and a crash dump is retrieved from Windows Error Reporting for the app, how can you use it to see a stack trace, variables, ...
5
votes
1answer
60 views
Hang in COM application with C# plugin
I've got a problem where our application hangs on our customers' machines that I've been on for days now without solving. The problem arises quite randomly from what we've seen, even though that may ...
5
votes
2answers
52 views
What's in a dump file?
I've been asked by a MS Connect moderator to provide a mini dump file for an issue I'm experiencing with Visual Studio.
My business is mildly concerned about what might be contained within the dump ...
5
votes
2answers
182 views
What combination of MINIDUMP_TYPE enumeration values will give me the most 'complete' mini dump?
I want my app to create a mini dump to help debug unhanded exceptions.
I may not know what type of mini dump I will want until after the dump has been created, so what combinations of MINIDUMP_TYPE ...
5
votes
1answer
577 views
How can I get complete stack traces for mixed-mode minidumps when (WPF) native images are involved?
I have a mixed-mode C++/CLI application which uses WPF. Crashes from our customers are reported as minidumps to our own server.
When I try to investigate a minidump using the !pe or !clrstack ...
5
votes
4answers
259 views
Is it possible to load mismatched symbols in Visual Studio?
I've got a Windows minidump (C code) and a corresponding exe file. Unfortunately, I don't have the exact matching .pdb files, but I do have .pdbs that contain the exact same code just built at a ...
5
votes
4answers
451 views
How can I create objects based on dump file memory in a WinDbg extension?
I work on a large application, and frequently use WinDbg to diagnose issues based on a DMP file from a customer. I have written a few small extensions for WinDbg that have proved very useful for ...
5
votes
4answers
224 views
How do I get a string description of a Win32 crash while in Top level filter (I am looking for the address of the instruction at the top of the stack)
If I use a class/method like the one described here how can I get the description/address of the call at the top of the stack?
Basically I want some value I can use in a call to our bug tracking ...
4
votes
2answers
117 views
Post-mortem .NET debugging with SOS.dll
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.
...
4
votes
3answers
119 views
Trouble debugging minidump in VS 2010
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 ...
3
votes
3answers
148 views
First-chance exception at 0x782260ec in xxx.exe: 0xC0000005: Access violation
My application crashes after some time but I can't find any pattern. I was able to get my hands on crash dump. Application runs on Windows Mobile 6.5. It is written in C#. It uses Imaging API, PInvoks ...
3
votes
1answer
550 views
What to do with “The version of SOS does not match the version of CLR you are debugging” in WinDbg?
I'm having a problem with some of my apps. It's a wcf-based app running under IIS6 in Windows 2003 Server (x86):
In Event Log I get such an error from "W3SVC-WP" source (EventID=2262):
ISAPI ...
3
votes
2answers
246 views
How do I get the “bucket id” that winqual uses if I have a minidump file or exception structure? (Windows c++)
There are a few related questions on SO - but have not found the answer -
I would like to generate a "signature"/bucket id to report a minidump/crash back to our issue tracking system. Since MS ...
3
votes
3answers
769 views
How to create minidump of a .NET process when a certain first chance exception occurs
My application throws InvalidCastException in the QA environment, something I cannot reproduce in development.
I wish to obtain the minidump at the exception moment. I know about adplus, but I am not ...
3
votes
3answers
2k views
Call MiniDumpWriteDump with callback
I want to use the MiniDumpWriteDump function to create some custom dump files (mainly, i want to export a dump file that contains the minimum amount of information for the thread callstacks), but i am ...
3
votes
2answers
1k views
windbg dump command fails with error 0x8007012b
A customer is attempting to capture a minidump of a hang. He fires up WindDbg and successfully attaches to the process. WinDbg displays its header:
Microsoft (R) Windows Debugger Version ...
3
votes
2answers
609 views
What settings should I be using with Minidumps?
Currently we call MiniDumpWriteDump with the MiniDumpNormal | MiniDumpWithIndirectlyReferencedMemory flags. That works just fine for internal builds in Debug configuration, but isn't giving as much ...
3
votes
5answers
11k views
Windows MiniDump files — “Symbols can not be loaded” when trying to read with WinDbg
I have an application that sometimes causes a BSOD on a Win XP machine. Trying to find out more, I loaded up the resulting *.dmp file (from C:\Windows\Minidump), but get this message when in much of ...
2
votes
1answer
40 views
Create a dump file for an application whenever it crashes
I am trying to create a dump file for my application whenever it crashes.
I am currently using procdump.exe with -e flag in order to do it, so if I have unhandled exception in my application procdump ...
2
votes
2answers
176 views
Write windows mini dumps with Python
I've been trying to create a function that will write a minidump file for a given process ID. So far I have this:
import win32con, win32api, win32file, ctypes
dbghelp = ctypes.windll.dbghelp
def ...
2
votes
1answer
74 views
Windows: cannot see call stack when opening a minidump
I'm using MiniDumpWriteDump with MiniDumpNormal parameter to dump call stack in SEH exception handler. When I open the dump in VS, I can't see the callstack. I did see it with the same code two days ...
2
votes
2answers
231 views
How to open a C# crash dump (Minidump)
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 ...
2
votes
3answers
262 views
After install COM AddIn, test connect in Excel, got bluescreen
COM Excel AddIn, C#, VS 2008,
Excel COM Addin, tested on test VM, works fine
Customer installed and got blue screen, have no clue why.
Following is what customer got. Can someone help? I have no ...
2
votes
4answers
185 views
Is a mini dump useful for debugging in .NET
I see some conflicting opinions about mini dumps for .NET debugging, for example;
Mini Dump Snapshots and SOS
vs
Minidumps are all but useless in .NET
They seem like would be useful to me, why ...
2
votes
2answers
154 views
What is minimum MINIDUMP_TYPE set to dump native C++ process that hosts .net component to be able to use !clrstack in windbg
There is native C++ application that hosts several .net components. When some error occurs this application creates mini dump using MiniDumpWriteDump function. Question here what is minimum set of
...
2
votes
2answers
291 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 ...
2
votes
1answer
146 views
How to request additional data with WER?
I'm new to WER (actually, just registered a few days ago).
I've managed to establish an account and map my test application to it.
However, when I invoke an unhandled exception, I see that no ...
2
votes
5answers
1k views
Debugging a minidump in Visual Studio where the call stack is null
I have a customer who is getting a 100% reproduceable crash that I can't replicate in my program compiled in Visual Studio 2005. I sent them a debug build of my program and kept all the PDB and DLL ...
2
votes
2answers
249 views
Useful things to put in the user stream segment of minidumps
I am interested in what useful things developers put in the user stream data structure that can be embedded in minidumps. MSDN describes the parameter for MiniDumpWriteDump as such:
...
2
votes
2answers
1k views
Symbols (pdb) for native dll are not loaded due to post build step
I have a native release dll that is built with symbols. There is a post build step that modifies the dll. The post build step does some compression and probably appends some data. The pdb file is ...
1
vote
0answers
63 views
Values of locals in minidump with optimizations enabled
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've been able to load ...
1
vote
1answer
233 views
Loading dump file; VS doesn't find my source code
I'm developing a .NET 4.0 app in VS 2010.
I'm trying to use dump files for the first time, but when loading the minidump into VS, I can't debug it, since VS doesn't find the source files.
Here's ...
1
vote
1answer
279 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 ...
1
vote
2answers
197 views
Where's the application crash dump on an XP SP3 machine?
It used to be that an application crash (unhandled exception) would create a mini dump in the %TEMP% folder on an XP machine, but it looks like Microsoft has changed this logic - maybe with an update.
...
1
vote
1answer
117 views
My minidumps are getting too big to be loaded by Visual Studio, how do I solve this?
When my application crashes it generates a minidump to allow post mortem debugging. I use the options MiniDumpWithIndirectlyReferencedMemory and MiniDumpWithPrivateReadWriteMemory.
It all worked ...
1
vote
1answer
220 views
fatal error minidump
I want to write a utility that in the event of a fatal error, a minidump dmp file is created. I'm using the clrdump api and that seems fairly straightforward.
What I wanted to know is, what should I ...
1
vote
1answer
254 views
Question about memory dump
I am currently trying to design a memory dump tool that could get the memory dump of a crashed process from another process. But I am totally new to this and I want to take this as an opportunity to ...
1
vote
2answers
246 views
How can I debug a dump file for an ASPNET worker process in Visual Studio 2010?
I've run into a particularly nasty bug where an ASP.NET website attempts to make a call to a WCF service method that sends IIS into a death spiral...that ultimately brings down the associated app ...
1
vote
2answers
280 views
Need help debugging a minidump with WinDbg
I've read a lot of similar questions, but I can't seem to find an answer to exactly what my problem is.
I've got a set of minidumps from a 32-bit application that was running on 64-bit Windows 2008. ...
1
vote
2answers
981 views
Creating a MiniDump of a running process
Im trying to make a tool for my end users that can create a MiniDump of my application if it hangs (i.e. external to the app). Im using the same code as the internal MiniDumper but with the handle and ...
1
vote
3answers
613 views
Why don't Minidumps give good call stacks?
I've used minidumps on many game projects over the years and they seem to have about a 50% chance of having a valid call stack. What can I do to make them have better call stacks?
I've tried putting ...
1
vote
1answer
617 views
Minidump creates empty dump file
We have an in-proc crash handler which is using MiniDumpWriteDump() from DbgHelp to write a minidump is case of a process crash.
I know its not the best way to do it, however, at the moment we do not ...
1
vote
1answer
357 views
cdb and windbg unable to load MiniDumps, but VS 2008 loads them fine
I am trying to build some automated crash dump analysis, but I cannot get cdb or windbg to load my crash dumps. They load just fine in VS 2008.
When I run dumpchk.exe on the file, I get:
Loading ...
1
vote
1answer
1k views
How to set AeDebug to get a minidump with the name of the process?
I have to perform some post mortem debugging on a C++ project.
Known way to perform is to set the cdb debugger as a minidump generator and to process the dumps collects afterwards.
I read nearly the ...
1
vote
4answers
721 views
Catching exit(1);
I have a MFC SDI application which during startup loads a DLL. I am only able to view the source code and use the DLL but not changing & recompiling it.
The situation now is that, whenever the ...
1
vote
4answers
845 views
How do you identify (and get access to) modules/debug symbols to use when provided a windows .dmp or .minidmp
In a way following on from reading a windows *.dmp file
Having received a dump file from random customer, running the debug session to see the crash, you often find it is in a MS or other third party ...
1
vote
2answers
1k views
Opening minidump file (*.dmp) not possible in Visual Studio.NET 2005?
I have created a minidump using win32 api
[DllImport("DbgHelp.dll", SetLastError = true)]
private static extern bool MiniDumpWriteDump(
dmp file is successfully created.
i am trying to open ...