Skip to content

Instantly share code, notes, and snippets.

@ubergoober
Created May 7, 2014 17:46
Show Gist options
  • Save ubergoober/b6c7c328d5a0b79f29e9 to your computer and use it in GitHub Desktop.
Save ubergoober/b6c7c328d5a0b79f29e9 to your computer and use it in GitHub Desktop.
Disable all script debugging in Visual Studio and IE8
ref: http://blogs.msdn.com/b/greggm/archive/2009/04/06/disabling-script-debugging-in-vs-2008-ie8.aspx
Disable all script debugging in Visual Studio and IE8:
Open a new command prompt (start->run, cmd.exe). If you are on a 64-bit computer this needs to be a 32-bit prompt (start->run, c:\windows\syswow64\cmd.exe)
reg add HKLM\SOFTWARE\Microsoft\VisualStudio\9.0\AD7Metrics\Engine\{F200A7E7-DEA5-11D0-B854-00A0244A1DE2} /v ProgramProvider /d {4FF9DEF4-8922-4D02-9379-3FFA64D1D639} /f
If you are using Visual Web Developer Express, replace 'VisualStudio' with 'VWDExpress':
reg add HKLM\SOFTWARE\Microsoft\VWDExpress\9.0\AD7Metrics\Engine\{F200A7E7-DEA5-11D0-B854-00A0244A1DE2} /v ProgramProvider /d {4FF9DEF4-8922-4D02-9379-3FFA64D1D639} /f
If you want to restore your computer so that you can debug scripts again:
reg add HKLM\SOFTWARE\Microsoft\VisualStudio\9.0\AD7Metrics\Engine\{F200A7E7-DEA5-11D0-B854-00A0244A1DE2} /v ProgramProvider /d {170EC3FC-4E80-40AB-A85A-55900C7C70DE} /f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment