Script Debugging Displays

For general issues related to PWB v2.

Moderators: Tyler, Scott, PWB v2 Moderator

Post Reply
aja28
Spectator
Spectator
Posts: 1
Joined: Mon Jun 20, 2005 4:30 pm
Location: CO Springs, CO
Contact:

Script Debugging Displays

Post by aja28 »

We are having a problem with script debugging displaying even when it's disabled. It is disabled in IE as well. We are using PWB 2.9.

Any suggestions?

Thanks

Scott
Site Admin
Site Admin
Posts: 2536
Joined: Mon Dec 16, 2002 12:31 pm
Location: Rochester, MN
Contact:

Post by Scott »

It is possible the user registry key has been changed to turn on the script debugging. You can change it by hand in the Control Panel Applet Internet Options. However, it is easier to automate it by using a PWB startup script to disable the user debugging in the registry.

Here is a snippet from the script we use on our terminals.

...
REM Disable Script debugging
REG ADD "HKCU\Software\Microsoft\Internet Explorer\Main" /v "Disable Script Debugger" /t REG_SZ /d "yes" /f
REG ADD "HKCU\Software\Microsoft\Internet Explorer\Main" /v "DisableScriptDebuggerIE" /t REG_SZ /d "yes" /f
...

--Scott

Post Reply