Jump to content

Just In Time Debugger


 Share

Recommended Posts

In IE 'internet options' > Advanced > Under "Browsing" There is an option called "Disable script debugging (Internet Explorer)" and "Disable script debugging (Other)".

Changing the "Disable script debugging (Other)" to 'checked' will stop my JIT debugger from coming up in my script.

Is this a reg key somewhere? anybody know?

Thanks

Link to comment
Share on other sites

Use RegMon to see if/what registry changes are made.

IE Dev ToolbarMSDN: InternetExplorer ObjectMSDN: HTML/DHTML Reference Guide[quote]It is surprising what a man can do when he has to, and how little most men will do when they don't have to. - Walter Linn[/quote]--------------------[font="Franklin Gothic Medium"]Post a reproducer with less than 100 lines of code.[/font]
Link to comment
Share on other sites

I used "What Changed" and found that these will solve my JIT problem

RegWrite( "HKEY_USERS\S-1-5-21-1242909238-215958010-794563710-284610\Software\Microsoft\Internet Explorer\Main", "Disable Script Debugger", "REG_SZ", "yes" )

RegWrite( "HKEY_USERS\S-1-5-21-1242909238-215958010-794563710-284610\Software\Microsoft\Internet Explorer\Main", "DisableScriptDebuggerIE", "REG_SZ", "yes" )

Thanks mike

EDIT: Will this be the same on every computer? Or is there a dynamic way to call the KEY?

EDIT2: Nevermind I found em... Thanks anyhow

EDIT3:

To Disable The Debugger

For your script:

RegWrite( "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main", "Disable Script Debugger", "REG_SZ", "yes" )oÝ÷ ØZ+ F®¶­se&Vuw&FRgV÷C´´Uô5U%$TåEõU4U"b3#µ6ögGv&Rb3#´Ö7&÷6ögBb3#´çFW&æWBWÆ÷&W"b3#´ÖâgV÷C²ÂgV÷C´F6&ÆU67&DFV'VvvW$RgV÷C²ÂgV÷Cµ$Tuõ5¢gV÷C²ÂgV÷C·W2gV÷C²
Edited by danwilli
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...