|
14-09-2007, 00:01 | #1 |
Absinthe
Join Date: Sep 2007
Location: Leighton Buzzard
Posts: 1,282
|
Windows XP default debugger help
I'm trying to remove all traces of Visual Studio manually as the uninstaller won't work.
The last thing I need to do is to re-define the debugger Windows uses. Its set to the Visual Studio Just In Time debugger. Using the second method from http://support.microsoft.com/default.aspx/kb/923827 I know what to do. However I don't know what the value for this key should be by default on Windows XP. Can any who has the default debugger in operation paste their Code:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\AeDebug Code:
Put the full value of the key in here. |
14-09-2007, 08:07 | #2 |
Rocket Fuel
Join Date: Jul 2006
Posts: 7,826
|
This is the value for everything in that branch:
Code:
(Default) REG_SZ (value not set) Auto REG_SZ 0 Debugger REG_SZ drwtsn32 -p %ld -e %ld -g UserDebuggerHotKey REG_DWORD 0x00000000(0) |
14-09-2007, 11:50 | #3 |
Absinthe
Join Date: Sep 2007
Location: Leighton Buzzard
Posts: 1,282
|
Thank you very much Burble.
|