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
10 views
WER RecoveryCallback method only gets called if not restarting
i recently implemented the Application Recovery and Restart, a feature since Vista. It works without any exceptions.
But it still has an issue: If the program runs <60 seconds, WER only shows ...
3
votes
2answers
135 views
When does Windows Error Reporting create a dump file? Is it configurable? Has this changed in Windows 7?
I'm relying on Windows Error Reporting to create full user-mode dumps for a large, multi-threaded application. I know that when I started using it (early 2012) these dumps contained all application ...
0
votes
0answers
41 views
Are background task exceptions reported to Microsoft?
I believe unhandled errors in Windows Store apps are reported to Microsoft and then presented to the application's developers via the store.
If I create an app that has a background task, if an ...
0
votes
1answer
106 views
Should I write my own crash dump via watchodg process or rely on WER?
At the moment my info is (and let's keep the context to Windows-7, as WER doesn't work like that on Win-XP) that I have two ways of getting a full memory crash dump for my application:
I can set up ...
0
votes
0answers
29 views
How to find a specific event error report on the Windows Dev Centre website [closed]
I manage the QA team at a software house and it is a company requirement that we put our software through the logo certification scheme for the latest version of Windows. One of the requirements for ...
0
votes
0answers
16 views
Error Reporting Service is executing status
I viewed Windows event log and saw many events "Error Reporting Service changed to executing status" with level of event is "information".
Does it mean at that moment an error of an application (or of ...
4
votes
1answer
2k views
Win2008 R2 WER ( error reporting ) LocalDumps blocked by what?
I Just want to recover crash dumps of my own 32bit applications.
I tried the following:
I followed the steps at MSDN "Collecting User-Mode Dumps":
...
1
vote
2answers
567 views
How to analyze WER collected crash dump of .NET application with VS2010?
I have an NET 4.0 application which causes an unhandled exception when run. When I run it from VS2010 it breaks on exception line and I can save dump. When I load the dump later I get exactly to the ...
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
1answer
190 views
How do I disable the dialog box I get when my application errors on exit? “Unknown software exception 0xc0020001”
I get an error on my unit test and it hangs my TeamCity continuous integration. How can I make it error headlessly? Fixing the error is a separate issue, please don't tell me that.
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.
...
2
votes
2answers
1k views
With respect to ReadFile() WinAPI, GetLastError is throwing the error 183. What Does “ERROR_ALREADY_EXISTS” mean in this context?
I am calling ReadFile() WinAPI to copy the file contents to a char array, inside my VC++ code. Have placed GetLastError() immediately after ReadFile().
for( read some n no: of files)
{
...
0
votes
1answer
116 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 ...
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 ...
1
vote
1answer
560 views
Any tool to easily configure Windows Error Reporting, JIT debugger etc.?
When your program crashes at a non-development environment, there are still ways to locate the error. You can have the Windows create a full crash dump, or you can have it attach a debugger such as ...
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
649 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 ...
3
votes
2answers
263 views
Getting helpful error messages on Windows 7
During Windows XP development, if my application encountered an unhandled exception it would display an error message "X has encountered and error..." and give me the option to launch the debugger. ...
3
votes
2answers
252 views
Robustly killing Windows programs stuck reporting 'problems'
I am looking for a means to kill a Windows exe program that, when being tested from a python script, crashes and presents a dialog to the user; as this program is invoked many times, and may crash ...
3
votes
4answers
350 views
how to force apache to crash?
I want to test something when apache crashes. The thing I want to test involves Windows asking me if it wants to send an error report. Any way to make Apache crash and ask me to send an error report ...
1
vote
7answers
310 views
Win32: How to crash?
i'm trying to figure out where Windows Error Reports are saved; i hit Send on some earlier today, but i forgot that i want to "view the details" so i can examine the memory minidumps.
But i cannot ...
2
votes
1answer
230 views
How to request additional data with WER?
I'm new to WER (actually, just registered a few days ago).
I've managed to establish an account and map my test application to it.
However, when I invoke an unhandled exception, I see that no ...
3
votes
1answer
83 views
Is there any way to do a WER “Request Additional Files” for the windows temp directory?
My company has had numerous crashes reported to windows error reporting due to what looks like an install problem. The logs for our installs are typically in the windows\temp directory. I would like ...
1
vote
0answers
190 views
Manually trigger Windows Error Reporting from a Outlook COM Add-In
I am writing a Outlook COM Add In using Visual Studio 2008 and VSTO. If an exception goes unhandled in the add in, I would like it to trigger Windows Error Reporting (WER). Our company has access to ...
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 ...