Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
2answers
3k views

Help catching StackOverflowException with WinDbg and ADPlus

Short Version I want an ADPlus script that will do a full memory dump on the first-chance StackOverflowException, before anything is cleaned up, and ignore all other exception types. Log Version ...
2
votes
1answer
555 views

How to create process mini dump on crash without running AdPlus explicitly on Windows 7?

I have a .NET process that sometimes fails with AccessViolationException in the native code of some 3rd party library. I wish to have full memory mini dump when that happens. I have read this page - ...
2
votes
2answers
156 views

How Can I Catch a Mysterious Process Killer?

We had this customer complaining out product was constantly crashing after running fine for 2-5 minutes. It took few days of guessing, but we came to the following conclusion: When the process is ...
1
vote
1answer
20 views

Adplus fullonfirst for a specific exception?

A colleague is trying to track down a race condition, leading to an InvalidOperationException. I suggested adplus with fullonfirst, but it turns out that a third party library throws and catches all ...
1
vote
1answer
50 views

type of process dump when its generated from task manager

Starting from Windows Vista, now one can generate a process dump right from task manager. Typically I generate a process dump either by using Adplus or right from Windbg. If I use one of these option, ...
1
vote
2answers
314 views

Adplus dump creation failed - access is denied

I'm trying to get a dump to debug some memory issues in ASP.NET processes (Windows 2003 R2 SP2 x64): adplus -hang -o f:\dumps -pn w3wp.exe -quiet There are nine w3wp.exe (all from different ...
1
vote
1answer
102 views

How to script ADPlus for ease of customer use for diagnosing crashes and hangs

We're a great fan of using ADPlus in the Debugging Tools for Windows for customers who are experiencing crashes or hangs. However, the big problem we have is trying to explain what the customers need ...
1
vote
1answer
411 views

Debugging winform crash - C# [ADPlus + Windbg]

System.AccessViolationException was unhandled Message=Attempted to read or write protected memory. This is often an indication that other memory is corrupt. Source=System.Windows.Forms ...
1
vote
1answer
701 views

First chance vs Second chance exception

When I generate a dump file using ADPlus, I get both First chance and second chance exception but when I use task manager for generating dump file, I only get once dump file. Is it the second chance ...
1
vote
2answers
831 views

Help catching AV with WinDbg and ADPlus 7.0

I want to catch Memory Access Violation in SQL Server Compact Edition like this described at http://debuggingblog.com/wp/2009/02/18/memory-access-violation-in-sql-server-compact-editionce/ The ...
1
vote
3answers
700 views

Windbg Thread ID After StackOverflow And Process Shut Down

Using ADPlus (in crash dump mode) to generate .dmp files. The final sequence of unhandled exceptions (that produce full memory dump files) is... 1st chance DLL unload: contains thread id's but ...
0
votes
0answers
23 views

adplus - doesn't create dump file, process seems locked up

I'm trying to run: adplus -Crash -o C:\AdPlusDumps -pn .exe -lcqd (I've also tried without the -lcqd) My program throws an exception (normally would crash) Instead it seems to hang and I can't ...
0
votes
2answers
36 views

Application crashes on start - how to get a crash dump file?

My winform application crashes as soon as its been launched. This problem is only happening in one of the client computer. Works fine for all other clients. I was thinking of using ADPlus to get a ...
0
votes
2answers
68 views

DebugDiag vs AdPlus

I have never used DebugDiag but just wondering if it offer any advantages over taking a process dump over Adplus? Or if it has any limitations that I should consider in taking snapshot. UPDTAE: Doing ...
0
votes
3answers
89 views

reading crash dump

I have been getting a stackoverflow exception in my program i belive it is orginating from a thirdparty libary, microsoft.sharepoint.client.runtime.dll. i used adplus to create the crash dump. but ...
0
votes
0answers
31 views

Adplus 7 configuration file

How do you set up an adplus (v7) configuration file to log (Full/MiniDump) for only particular Silverlight exceptions?
0
votes
2answers
87 views

AdPlus & WinDbg: difference between taking a dump with AdPlus and with WinDbg?

The task - when the application crashes, it is required to find the crash cause. I saw recommendations to take the crash dump with AdPlus and then load it into WinDbg for analysis. What I do is ...
0
votes
0answers
40 views

Should I keep adplus running?

I know that if I'm suffering from the w3wp.exe process crashing, then I could run adplus to capture a dump just before the crash... But if I'm not expecting any failures or crashes, should I still ...
0
votes
2answers
205 views

Analyzing Asp.net deadlock crash dump

I'm having a deadlock on my asp.net. I don't know where it comes from (what function), not talking about where in that function. I generated dump file using adplus ...
0
votes
1answer
172 views

How to use ADPLUS to _ONLY_ get MiniDumpOnSecond

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 ...
0
votes
1answer
80 views

How to understand corrupted infix pattern for freed block

We have PageHeap enabled and are running adplus on our system and recently have had a couple of "corrupted infix pattern for freed block" failures. Can someone shed some light on what this means, ...
0
votes
1answer
136 views

ADPlus Dump Analysis. If PDB file is not present in production?

I am analyzing one application which hangs randomly in production. I want to use ADPlus/DebugDiag to analyse by generating dumps. If I am generating dumps with the 'debug' mode application running, I ...
0
votes
1answer
485 views

ADPlus.exe with Windows debugging tools - what's funcationlity difference if compare to ADPlus vbscript

I have installed the new version of Windows debugging tools and I got a AdPlus.exe. I don't know if there are any changes but I remember when I installed it sometime ago on another computer, what i ...
0
votes
1answer
104 views

Using AdPlus with ASP.NET app need Process ID

I want to use AdPlus to diagnose out of memory errors. To run the "hang" memory dump, I need to provide the process ID of my app. What would that be and how do I go about finding that?
0
votes
1answer
257 views

Does adplus/cdb crash dumps still work on Vista 64 Ultimate?

I am doing some research on a asp.net bug. I tried to get adplus to give me a crash dump file from IIS crashing. I have done this in the past on XP machines, but with my current Vista Ultimate setup ...