Questions tagged [adplus]

ADPlus is a tool from Microsoft Product Support Services (PSS) that can troubleshoot any process or application that stops responding (hangs) or fails (crashes).

ADPlus is a tool from Microsoft Product Support Services (PSS) that can troubleshoot any process or application that stops responding (hangs) or fails (crashes).

44 questions
16
votes
2 answers

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 After a release of new ASP.NET code, we started…
David Boike
  • 18,545
  • 7
  • 59
  • 94
12
votes
1 answer

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, I have to provide some switches with my command…
palm snow
  • 2,392
  • 4
  • 29
  • 49
6
votes
1 answer

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 exception? I am bit confused about this 1st and…
imak
  • 6,489
  • 7
  • 50
  • 73
6
votes
4 answers

Windbg: Unable to walk the managed stack

Via Adplus I attached a process (in my iis I ran a website) C:\Program Files (x86)\Debugging Tools for Windows (x86)>ADPlus -crash -pn w3wp .exe -o C:\dumps Below is the code to reproduce stackoverflow exception of that website: protected void…
Rocky Singh
  • 15,128
  • 29
  • 99
  • 146
5
votes
1 answer

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 - http://support.microsoft.com/kb/931673, the…
mark
  • 59,016
  • 79
  • 296
  • 580
5
votes
2 answers

Inconsistent behavior from ADPlus / CDB - No Runnable Debuggees Error in 'g'

I've set up ADPlus / cdb as the default Just-In-Time debugger on my machine. When any process has an unhandled exception or crashes for any other reason, I want ADPlus to generate a crash dump for me. I'm using an ADPlus config file to set the…
mrranstrom
  • 228
  • 2
  • 10
4
votes
3 answers

Unable to read crash dump in windbg

I have been getting a stackoverflow exception in my program which may be originating from a thirdparty libary, microsoft.sharepoint.client.runtime.dll. Using adplus to create the crash dump, I'm facing the problem that I'm struggling to get any…
Billybonks
  • 1,568
  • 3
  • 15
  • 32
4
votes
2 answers

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 suggested config is:
Stoune
  • 306
  • 3
  • 8
3
votes
1 answer

My application is hung and windbg dump analysis shows all threads are in suspended/unfrozen state. What does it mean?

My outlook addin application is hung and windbg hang dump analysis shows all threads are in suspended/unfrozen state. The errors in the event viewer and process monitor shows hundreds of registry lookup failures and disk access failures. What does…
Raja
  • 429
  • 4
  • 16
3
votes
1 answer

Windbg and Stack Overflow exception - got crash dump but Windbg output meaningless

I am trying to find the source of an intermittent Stack Overflow exception on a live ASP.NET 4.0 site. I have captured some crash dumps using ADPlus (adplus_old.vbs, not the new adplus.exe) using a custom configuration that ignores all other types…
Laurence
  • 980
  • 12
  • 31
3
votes
1 answer

Where do the exception codes used in ADPlus.config come from?

I've been trying to put together a config file for ADPlus.exe to determine the cause of my ASP.NET application's unexpected restarts. I'm having some trouble understanding the adplus.config file. I have found example config files online, such as…
Katie Kilian
  • 6,815
  • 5
  • 41
  • 64
3
votes
2 answers

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 terminating without leaving any traces (event…
Tal
  • 1,759
  • 1
  • 12
  • 22
3
votes
2 answers

_NT_SYMBOL_PATH adplus windbg issue, not able to set name

In command line I have run the following command: C:> set _NT_SYMBOL_PATH=srvc:\symbolshttp://msdl.microsoft.com/download/symbols But when I run the following command in adplus.exe C:\Program Files (x86)\Debugging Tools for Windows (x86)>ADPlus…
Rocky Singh
  • 15,128
  • 29
  • 99
  • 146
2
votes
2 answers

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 websites). Everytime I run adplus as above some of the…
Mauricio Scheffer
  • 98,863
  • 23
  • 192
  • 275
2
votes
1 answer

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 to type in order to run it. We would send them…
the_mandrill
  • 29,792
  • 6
  • 64
  • 93
1
2 3