Tagged Questions

Windows Error Reporting (WER) is a set of Windows technologies that capture software crash and hang data from end-users of Windows.

learn more… | top users | synonyms

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, ...
7
votes
3answers
517 views

Is there a .Net API for Windows Error Reporting

Is there a .Net API for me to integrate Windows Error Reporting into my application? I'm mostly interested in initiating error reports even for non-catastrophic errors occurring in my application and ...
3
votes
1answer
93 views

How to programmatically determine if the OS we are currently running on is Windows Error Reporting capable?

I would like to determine if the OS that my program currently running on is Windows Error Reporting capable. I would like to do this using some kind of API. Windows Error Reporting was introducing ...
3
votes
1answer
159 views

Is the WER (winqual) web service API documented anywhere

I can find a few examples of accessing WER data through a SOAP API such as this: http://blogs.msdn.com/b/wer/archive/2010/05/14/winqual-web-services-with-windows-powershell.aspx Is the API they're ...
3
votes
3answers
244 views

How do I suspend all threads after my program crashes?

I have an unhandled exception handler. It shows a nice GUI and allows users to send an error report. Users can even leave their name and phone number and things, and our support department calls them ...
1
vote
1answer
352 views

Windows 7 - Disable Close Program/Debug Program Dialog, yet crash dump and notify the user

I'm developing a commercial Windows 7 desktop application (somewhat shrink wrap, but not quite). The application has both Windows Service and a WPF User Interface components. In the event that our ...
1
vote
3answers
181 views

How to enable the Window Error Reporting (WER) dialog. Total newbie question

After setting up WinQual and WER for the first time, I intentionally inserted a crash in a release build expecting\hoping to get the WER dialogue but instead still get the dialogue containing "runtime ...
1
vote
1answer
2k views

How to analyse WERInternalMetadata.xml file generated by Windows Crash Reporter?

A .Net 4.0 app keeps crashing for a user, but just for him, I could not reproduce the bug. He attached the WERInternalMetadata.xml file generated by the Windows Crash Reporter. By opening it I found ...
1
vote
1answer
614 views

Retain Windows Error Reporting Dumps from Hung Application

An application is hanging occasionally, and I would like to see the dump at the time to figure it out. I had written an application that the user can run to automatically create a dump that I can look ...
1
vote
3answers
421 views

Application Shutdown and Windows Error Reporting

we're attempting to update our application in order to submit it for Vista certification. Part of the requirements are to handle only known exceptions and have Windows Error Reporting deal with all ...
0
votes
0answers
17 views

Windows Error Reporting setup questions

UPDATE: The error message described in my first paragraph below seems to have gone away on its own, so I've removed it from this post. I'd still appreciate any answers to the following question about ...
0
votes
1answer
40 views

Where does windows error reporting create the dump file

Title says it all. I just want to find out which location does the WER write its dump file? Also is this location specific to OS?
0
votes
0answers
35 views

C# managed code errors not appearing in Winqual

I’m hoping someone can help me track down why our WER is not working as I expect it to. I have a large .Net 2.0 application that usually runs on a Windows Embedded Standard 2009. This application is ...
0
votes
0answers
38 views

CLR Unhandled Exception details writing in Event Logs

While running one .NET 2.0 based application. I got one crash and CLR Unhandled exception Dialog appear with "Details", "Continue" and "Quit" button. For getting the exception details I have to copy ...