Questions tagged [minidump]

A minidump is a file containing information about the state of a process, generally used for post-mortem debugging on Windows.

Minidumps are a file format invented by Microsoft to capture the state of a process. They often contain a minimal set of useful information (hence the name mini dump), including a list of threads, the stack memory for each thread, the loaded set of modules, and information about any exception that occurred. This is usually enough to get a stack trace from where the process crashed. Minidumps can also contain much more information, including the full heap memory of the process (usually referred to as a "full memory dump"), which can be quite large.

Windows will generate a minidump for a process when it crashes, however the minidump will be sent to Microsoft, and you are required to sign up for a WinQual account to view the reports. To avoid this process, many applications implement their own minidump-writing routines that send the dump directly to the application developers using email or HTTP, using well-known techniques as described in this Code Project article. There are also several libraries available that simplify the process, such as Google Breakpad and CrashRpt.

184 questions
0
votes
1 answer

Minidumps are not enabled by default on client versions of Windows

I'm trying to connect to an application written in VB using Jintegra to access it from JAVA. Since I don't know how to work on JINTEGRA_NATIVE_MODE from Eclipse, I'm forced to use cmd and Javac... Anyways, I get this irritating error everytime I try…
Peter
  • 79
  • 1
  • 12
0
votes
1 answer

Why do minidumps only sometimes have call stacks, for the same process?

Recently we had a hang in production. I used ProcessExplorer to Debug it, saved a minidump in cdb and analyzed it in VS2015. I could see the clr call stack on the main thread with symbols from our code. Wanting to learn a bit more I created a simple…
potomato
  • 1
  • 4
0
votes
0 answers

InvocationTargetException when converting a Windows minidump to hprof format

When trying to extract an hprof from a Windows minidump of a crashed JVM (-XX:+CreateMinidumpOnCrash) with jmap, I'm receiving an InvocationTargetException at about 31 MB of hprof file written (the mdmp file is 1700+ MB large): jmap…
Bass
  • 4,977
  • 2
  • 36
  • 82
0
votes
0 answers

Uncaught C++ exception and minidump with call stack

Is it possible to get a call stack from the point of throwing an exception, when the exception is uncaught and terminate handler is called? On windows. I must mention, that I can not use debugger, I want to create a mini dump in the terminate…
herolover
  • 733
  • 3
  • 9
  • 18
0
votes
1 answer

Eclipse RCP - Open wordfile using JACOB - error "Failed to write core dump.Minidumps are not enabled by default on client versions of Windows"

Am quite new to Eclipse RCP Java and JACOB(java/COM bridge). I was trying to open a word file(already created "test.docx") from my RCP program. I have used jacob.jar(CLASSPATH) and jacob.ddl(PATH) for opening the file- I have followed the…
AJ007
  • 189
  • 3
  • 13
0
votes
1 answer

Dumping Other Running Processes In Visual Basic

I am looking to create an executable that, when run, dumps notepad into a text document somewhere on my drive. This is important because I want to be able to scan the file for keywords and alert the end user if they are found. This the code I have…
erawdaB
  • 3
  • 4
0
votes
0 answers

CDB is unable to load dump file but VS 2013 loads it fine

I have built an automated crash dump analysis, but I can't get CDB to load a specific crash dump. It loads just fine in VS 2013. I'm using the Debugger Tool from the Windows Driver Kits 8.1 (6.3.9600.16384) which seems to be the latest one. When I…
0
votes
1 answer

Debugging a managed dump with Visual Studio

Situation: We create full dumps with WER and then they are sent to us thru automated systems. We have the pdbs and we can have the executable files as well. If we don't put the pdbs together with the binary files Visual Studio does not show correct…
Ignacio Soler Garcia
  • 21,122
  • 31
  • 128
  • 207
0
votes
0 answers

Working with minidump mdmp file

I finish my application, it is already on windows store. Application work great but I still get errors from Microsoft Dev Center. A lot of bugs I resolved but Microsoft gave me minidump file. I try to open it and check what it contains, but I think…
0
votes
1 answer

SetUnhandledExceptionFilter functionality

Can anyone explain me how SetUnhandledExceptionFilter method works in minidump?
isuru
  • 1
  • 1
0
votes
1 answer

Access violation in Xuggler - cannot write minidump

The code snippet below is to extract audio from video file. The work environment is Eclipse Luna on Windows 7. import com.xuggle.mediatool.*; import com.xuggle.xuggler.ICodec; public class VideoToAudio{ public void convertVideoToAudio(){ …
baba
  • 55
  • 1
  • 6
0
votes
1 answer

How to dump my buffer when BSoD occurs, using C#

I've designed a logging service for multiple applications in C#. Since the thinking of performance saving, all logs should be store in buffer first, and then write to log file when buffer is full. However, there are some of extension cards (PCI /…
J.C
  • 633
  • 1
  • 13
  • 27
0
votes
1 answer

Create a minidump of an application on Windows Mobile / Pocket PC 2003

How do I create a minidump of a user-mode application (containing all the mapped memory for said usermode application) on the Windows Mobile or Pocket PC 2003 platforms?
user314104
  • 1,528
  • 14
  • 31
0
votes
1 answer

Failed to write core dump after removing class

All off a sudden I started to get a JavaThread crash. I created a class in my project and then I deleted it, the class was SoundPlayer. Think thats the problem because at the end of the log it tries "java command…
Jedi Schmedi
  • 746
  • 10
  • 36
0
votes
2 answers

C: Converting a 2D double array to a java 2D double array

I'm trying to run a native method in java and then receiving a 2D double array that I can use in java. I've successfully manipulated the data in C but now I need to send it back to java. How would I convert a 2D double array in C to a 2D double…
Linus
  • 1,516
  • 17
  • 35
1 2 3
12
13