1
vote
2answers
60 views

SOS does not support the current target architecture

I am trying to use windbg to research a hang dump file created on an x64 machine for our x86 process. This is a 4.0 x86 application, so just to get an unmanaged stack, I had to do the following: ...
0
votes
0answers
68 views

IE 8 crashes when using JAWS 12

I need some help analysing a dump file. When i navigate our application using IE8 and JAWS12 it, it causes IE8 to crash. So i am not able to debug it, or use the profiler. I obtained the dump by ...
3
votes
1answer
87 views

What does it mean by “Followup: MachineOwner”?

The following message is copied from WinDBG's output window: Use !analyze -v to get detailed debugging information. BugCheck 24, {1904fb, 8f9ec9f8, 8f9ec5d0, 87c4fccc} Probably caused by : Ntfs.sys ...
0
votes
1answer
168 views

How do I create a full memory dump to a remote machine?

I want to take a full physical memory dump of a remote machine. What is the easiest way to achieve this goal?
2
votes
1answer
111 views

Is it normal for ASP.NET memory dump to contain strings of the full html page?

We have a situation where the ASP.NET worker process is using 100% of CPU intermittently. After analyzing the perfmon result and the memory dump, we saw an indication that the garbage collector is ...
1
vote
1answer
161 views

what does “BUGCHECK_STR: APPLICATION_FAULT_NULL_CLASS_PTR_READ_AFTER_CALL” mean in windbg !analyze -v output

I try to analyze the crash dump file by using windbg, and type the extension command to get some basic analysis result "!analyze -v", and get the result as follow:- (I only pasted part of the info ...
1
vote
2answers
139 views

why get “first/second chance not available” in the core dump

I use windbg to debug the crash dump, in the following output from the windbg, you can see that "first/second chance not available", Why the first/second chance not available here? what does this ...
0
votes
2answers
178 views

VC10 debugging dump file create by procexp(MS process explorer) - only stack information no variable value

Basically I create dump file: Under debug : VC10 Debug->Save dump as... Under release: Procexp->right click -> Save dump -> Create Full Dump... Via 1, I can open the dump file with VC10 (symbol ...
1
vote
1answer
329 views

Analyzing Outlook HANG dump (with GoogleCalendarSync add-in installed)

Since I started using outlook with GoogleCalendarSync i'm experiencing hangs every once in awhile. I used ADPlus to create a hang dump of the process (using adplus -hang -pn outlook.exe -o c:\dumps). ...
0
votes
0answers
197 views

Kernel dump of user process

I'm developing a dll that hooks some apis but in some cases the hooked process hangs when exiting. The callstack is the following: 0012e894 77d968d4 77dae0fc 00000000 00000000 ...
3
votes
2answers
346 views

Creating a core dump on clr exception thrown

I'm trying to create a dump using windbg every time a specific clr exception is THROWN. I know about !soe, but I don't want the execution to stop, I just want it to create a dump. Is this possible? ...
5
votes
3answers
600 views

Simplest method for creating dump file for troubled process

I have found multiple ways of creating dump file such using windows utitlity userdump and adplus.vbs and a few others. There is one option that I have found in task manager seems to be the easiest ...
0
votes
1answer
212 views

Find memory corruption in dump files

The scenarion: - Large application with many threads with many transitions from managed to managed code ( C# code, python code, c++ code) - After a long run ( about 10 hours) a thread crashes and a ...
1
vote
4answers
2k views

WinDbg to create dump file upon crash?

We're having an exception with our application. Using Dr.Watson we didn't capture any dmp as well log files. I'm told, WinDbg is an alternative to create dump files upon exceptionn/crash of a program. ...
1
vote
1answer
335 views

WinDbg to analyze the crash dump doesn't work on the local pc

I developed a tiny MFC application that is going to run on the server 24 hours. (Windows Server 2008 R2, x64) I made the app crash on purpose to see if its minidump file is properly created and ...
2
votes
4answers
831 views

In windbg, what can cause the message “WARNING: Unable to verify timestamp for mydll.dll”?

I have a dump (created by SysInternal's procdump) and when I ask to view the call stack of a thread I get the error: "WARNING: Unable to verify timestamp for mydll.dll" I own the source code for ...
4
votes
2answers
296 views

How to debug BSOD crash caused indirectly by .NET application

We have a .NET application that transfers files from a client workstation to a database on a central server in a LAN. A few of our customers run this on wireless Windows XP workstations that use a ...
0
votes
1answer
461 views

Full Memory Dump missing stack information

I'm attempting to debug a high CPU issue from a customer. I've tried having them use procdump, however, it hangs while writing the dump without ever finishing. Instead the customer has initiated a ...
6
votes
1answer
727 views

application exits (no Exception) when referencing 64bit dll from C#

I've compiled lzo2.dll 64 bit and now looking to use it in a C# program: I'm using the following class to test (similar code works for 32bit lzo.dll): [DllImport("lzo2.dll")] private static extern ...
1
vote
0answers
820 views

High CPU usage on a .NET application

I am facing a weird issue, our in house built .NET application is running a 50% CPU load and doesn't seem to function right. The application uses WatiN to invoke several actions that perform web app ...
0
votes
2answers
347 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 ...
0
votes
2answers
479 views

OutOfMemoryException, Dump file size, and GC Heap Size

A 32bit .net application, running on a 32 bit machine, ran into an OutOfMemoryException. I then took a full memory dump, and although using WinDbg I can verify that a lot of memory is being used, I ...
1
vote
2answers
468 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
3answers
6k views

WinDbg x64: Cannot debug a crash dump - failed to load data access DLL

I attached WinDbg to a running process and had the process crashed (I have a separate question re. that case). Once the program crashed, WinDbg stopped and allowed me to debug the program. I took a ...
0
votes
1answer
328 views

analysis crash dump created by gflags.exe of .net 4.0 but there was no enough information

a windows service written in c# 4.0, setting gflags.exe(Global Flags) to save the dump when process crashing. But when I open the crash dump in windbg, I got the 0:00> . I am not good at windbg, and ...
0
votes
1answer
569 views

WinDbg dump list private/shared working set. DLL module memory question

Do you guys know if there's any way in WinDbg to list the module memory usage like one would see in Process Explorer's DLL pane? I would like to know WS Private Shareable Shared Total. I have a full ...
1
vote
2answers
564 views

Debugging “release-mode” binaries/dumps in windbg

I've yet to find a good resource for debugging RELEASE mode binaries or dumps in windbg. I understand that debugging becomes more limited with compiler optimization enabled. But sometimes I don't ...
7
votes
2answers
3k views

WinDbg and SoS, how do I print/dump a large string?

I am debugging a hangdump coming from a production server using WinDbg with the SoS extension. There is a string parameter in one of the stacks, that I need to know the value of. However, it is a ...
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 ...
3
votes
3answers
2k views

How can I extract DLL file from memory dump?

I have a memory dump (unmanaged process) . How can I extract (using windbg) one of the dlls loaded into the process ? I mean actually saving the dll file into the disk
1
vote
1answer
457 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 ...
0
votes
4answers
3k views

Using WinDbg to Inspect Method Parameters In Raw Memory from Crash Dump

One of our customers reported a crash. She saw the standard error message after an unhandled exception: "Application has generated an exception that could not be handled... Click OK to terminate the ...
6
votes
3answers
1k views

How can I know the CLR version of a crash dump?

I have a minidump crashed from a .NET application. Is there any way to know the CLR version (e.g. version of mscorwks.dll) of the fault machine (which generates the crash dump) using either Windbg or ...
0
votes
2answers
2k views

debug symbol issue

I am interested in which symbol file is used when we analyze dump file using Windbg or Visual Studio. Suppose my application is using a utility library, and the utility library has related private ...