drwatson

How to configure Dr. Watson to silently dump a crashing process without popping up any error dialog box?

假如想象 提交于 2019-12-24 03:50:39
问题 I would like to know if it is possible to configure Dr. Watson to silently dump a crashing process without popping up any error dialog box? We need this because I run a set of integration tests with some applications. We don't want the tests to be blocked by an error message box. We need a way to make Dr. Watson silent but still dump the image when the process crashes. Best, 回答1: Dr.Watson itself is silent by default. anyway, if you want to control the way Dr.Watson works, enter "drwtsn32.exe

Dr. Watson alternatives for Windows 2008+?

纵然是瞬间 提交于 2019-12-10 10:27:31
问题 We used to use Dr. Watson logfiles and dumps for crash analysis in our production environment, but Dr. Watson is no longer part of server 2k8 and our infrastructure team has had issues getting it running on 2008. Are there alternatives that can be used in a similar way? In particular, we'd need the faulting module and address causing the crash (we use this with the PDB and map information to backtrace to the faulting location), and it would have to work with windows services (including those

Disabling Windows error reporting (Dr. Watson) for my process

爷,独闯天下 提交于 2019-12-06 20:29:11
问题 I have an application that is hosting some unstable third-party code which I can't control in an external process to protect my main application from nasty errors it exhibits. My parent process is monitoring the other process and doing "the right thing (tm)" when it fails. The problem that I have is that Dr. Watson is still detecting crashes in the isolated process and attaching to the processes on the way down to take a crash dump. This has the two problems of: 1. Dramatically slowing down

Dr. Watson alternatives for Windows 2008+?

别说谁变了你拦得住时间么 提交于 2019-12-05 19:40:05
We used to use Dr. Watson logfiles and dumps for crash analysis in our production environment, but Dr. Watson is no longer part of server 2k8 and our infrastructure team has had issues getting it running on 2008. Are there alternatives that can be used in a similar way? In particular, we'd need the faulting module and address causing the crash (we use this with the PDB and map information to backtrace to the faulting location), and it would have to work with windows services (including those running as localsystem). Thanks for any suggestions. You can configure Windows Error Reporting to

Disabling Windows error reporting (Dr. Watson) for my process

孤街浪徒 提交于 2019-12-05 01:58:08
I have an application that is hosting some unstable third-party code which I can't control in an external process to protect my main application from nasty errors it exhibits. My parent process is monitoring the other process and doing "the right thing (tm)" when it fails. The problem that I have is that Dr. Watson is still detecting crashes in the isolated process and attaching to the processes on the way down to take a crash dump. This has the two problems of: 1. Dramatically slowing down the time that it takes for me to detect a failure because the process stays alive while the crash dump

Best way to have crash dumps generated when processes crash?

妖精的绣舞 提交于 2019-11-27 08:27:44
In Windows environments ( XP and Win 7 ): What is the best way to automatically have a crash dump generated when processes crash on the system? Can an installer (MSI) package do this? One of the best way to have an automatic dump for any/specific process on Windows is to configure a set of entries in the registry. I tried the below on Windows 7 64 bit. Open notepad.exe, paste the below entry and save it as "EnableDump.reg". You can give any name you wish. Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Windows Error Reporting\LocalDumps] "DumpFolder"=hex(2)

Best way to have crash dumps generated when processes crash?

三世轮回 提交于 2019-11-26 17:45:38
问题 In Windows environments ( XP and Win 7 ): What is the best way to automatically have a crash dump generated when processes crash on the system? Can an installer (MSI) package do this? 回答1: One of the best way to have an automatic dump for any/specific process on Windows is to configure a set of entries in the registry. I tried the below on Windows 7 64 bit. Open notepad.exe, paste the below entry and save it as "EnableDump.reg". You can give any name you wish. Windows Registry Editor Version