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
Script Debugging Displays
Moderators: Tyler, Scott, PWB v2 Moderator
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
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