Visual Studio Just In Time Debugger
I was suffering this "Visual Studio Just-In-Time Debugger" for more than a week. Everytime when I close the browser, a window like this pops up, it is so annoying.
I googled this morning and found a solution. Up to now, no pop-ups any more. It seems working fine for my machine, at least.

Here is the reslolution:
1. Open the CMD window, and run this command at the command line:
drwtsn32 -i
After that, you got a pop up window saying that: Dr.Watson has been installed as the default application debugger
2. Then run this command in the command line:
regedit
You will see an application called Registry Editor is opened.
If you are using the 32Bit Windows operating system, you should delete the follow registry keys
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\AeDebug\Debugger
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\.NETFramework\DbgManagedDebugger
If you are using 64Bit windows operating system, you should delete the following registry keys:
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\AeDebug\Debugger
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\.NETFramework\DbgManagedDebugger
August 20th, 2009 - 21:25
Thanks, that works for me as well.
August 27th, 2009 - 15:29
Thank you