Displays the current Internet Explorer browser operating mode:
(the File menu > Preferences > IE Mode option or equivalent setIEMode setting in effect), as well as the current values of IE settings that pertain to the Client.
Syntax:
showIE
Sample output:
Current ie settings
...Proxy flags=(5)
...Proxy server=()
...Proxy bypass=()
...Proxy autoConfigUrl=(xxx)
...Raw flag byte=(05)
...Read from registry key=
(HKEY_CURRENT_USER ...)
Generated Pac File:
// C:\Users\xxx\debuggerInternalPac.js generated by
debugger client on:
2015 06 11 15:20:40
function FindProxyForURL(url, host) {
urlLc = url.toLowerCase();
isDebuggable = (
(shExpMatch(urlLc, "http://acme.com:3666/*%22)
||
(shExpMatch(urlLc, "http://acme.com:9219/*%22)
||
(shExpMatch(urlLc, "http://acme.com:3667/*%22)
||
(shExpMatch(urlLc, "http://acme.com:3000/*%22)
);
if (isDebuggable) return "PROXY 127.0.0.1:8081;DIRECT";
return "DIRECT";
}
pacURLMode: http
httpPacUrl='http://acme.com:9292/pacman/'
httpPac upload filename: 'PAC.182.16.60.88.JS'
Common values for Proxy flags (in the output above) are:
- 5 proxy auto config (PAC) file is being used
- 3 proxy server is being used
- 1 direct connection to the Internet is being used (no proxy or PAC file)
|