Windows Error Reporting (WER) is a set of Windows technologies that capture software crash and hang data from end-users of Windows.
0
votes
1answer
15 views
What are the requirements for reports to display in Hardware Dev Center Dashboard?
I have created an account at Microsoft Windows Dev Center - Hardware and signed the Windows Error Reporting Agreement.
Then, I have introduced an null-pointer dereference to release signed driver ...
0
votes
0answers
33 views
High IO with WER
Currently i'm seeing High I/O on my Windows Server 2008 and it looks like the WERfault.exe is one one causing. My initial thought was that it's prob creating large amount of dump but digging deeper to ...
1
vote
0answers
105 views
Windows error reporting - reports service as hang during loading of service dependent windows dll-s
I have a service that starts at Win7 startup. If I start the service after boot I cannot find any warning in event log reported by Windows Error Reporting service, but if it starts automatically ...
4
votes
1answer
330 views
How to crash a process on Windows-7 without getting the WER dialog?
Is it possible to crash a regular user-mode process on Windows-7 without getting the Windows Error Reporting (WER) dialog? (When and if WER is normally enabled and no specific flags are applied.)
...
3
votes
1answer
114 views
Abort current process from async task
I have some complex functions that run in an async Task spawned via the TPL, which could occasionally fail in unexpected ways. When such a failure occurs, this indicates a programming error which ...
-1
votes
1answer
329 views
How to collect Application Crash Dumps
I need to collect the crash dumps for some specific applications. I have gone through this article but can't say it helped me much.
Platform:: WinXP, Vista & Win7.
Seems that WinXP and above ...
1
vote
1answer
91 views
Disable WER while application is running
I am working on an application that continuously opens IE, performs a task, closes it and then repeats. However in the event that IE crashes during execution the system is prepared to continue onto ...
0
votes
2answers
212 views
How do I (using python) correctly create and pass a ctypes structure to a WER API function?
First off, I found the following two similar questions:
Passing Structure to Windows API in python ctypes
ctypes and passing a by reference to a function
The first does not have an accepted answer, ...
1
vote
1answer
106 views
Custom error reporting (XP and above)
This is somewhat complex issue with several questions. Feel free to answer only the questions to which you have an answer.
I have a task to create minidumps in case of Windows exceptions for several ...
1
vote
1answer
350 views
Mapping product data for Windows Error Reporting
As described here, WinQual has moved and mapping product data for Windows Error Reporting has to be done using Microsoft Ecosystem Metadata Exchange (MEME).
Within our automated build process, a ...
0
votes
2answers
228 views
Recovering From Memory-Leak Crashes in WinForms
I have a WinForms app that is relying on several libraries over which I have limited control, such as Forms.Images and Forms.WebBrowser. Sporadic sudden memory leaks cause my application to crash. ...
2
votes
0answers
483 views
LocalDumps registry key stopped working (Windows Error Reporting)
I set up the registry key, HKLM\SOFTWARE\Microsoft\Windows\Windows Error Reporting\LocalDumps as described on MSDN:
http://msdn.microsoft.com/en-us/library/bb787181.aspx
I have a test program---a ...
4
votes
3answers
3k views
WinQual has moved to sysdev.microsoft.com
I have several programs registered with WinQual and have been successfully tracking crash reports sent via WER. after Microsoft's update to WinQual I cannot find any of my programs on the new site.
...
0
votes
1answer
115 views
Clarification required for “Windows Error Reports discontinuing support” announcement
When I logged on to The WinQual site this morning the update message below was displayed. I'm slightly confused by the wording of the last paragraph. Does this mean that "support" will no longer be ...
1
vote
1answer
2k views
Where does windows error reporting create the dump file
I just want to find out which location does the WER write its dump file? Also is this location specific to OS?
10
votes
4answers
358 views
Can “Windows Error Reporting” be used for non-fatal Java problems?
I was wondering if there was a way to use Windows Error Reporting from "inside" a Java program?
In other words, use the mechanism to report exceptions back to a central location without having the ...
1
vote
0answers
95 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 ...
3
votes
1answer
208 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 ...
2
votes
1answer
852 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 ...
0
votes
1answer
199 views
how to change MaxDiskUsage for dump file on windows ce
I enabled error reporting feature on Windows CE platform to gather dump file for crashed application. I set default dump type to system dumps. But we can only get context dumps.
Msdn states:
...
1
vote
3answers
647 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 ...
3
votes
1answer
243 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 ...
4
votes
3answers
418 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 ...
2
votes
1answer
6k 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 ...
9
votes
3answers
956 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 ...
8
votes
5answers
2k 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, ...
1
vote
1answer
745 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 ...
2
votes
3answers
541 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 ...