ShowIE command: Difference between revisions

From m204wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
(One intermediate revision by the same user not shown)
Line 3: Line 3:


{|
{|
|width="50%"| '''Action:'''
|width="125px"| '''Action:'''
|width="50%"|
|width="775px"|
<span class="f_Para">Displays the current Internet Explorer</span><span class="f_ListContinue"> browser</span><span class="f_Para"> operating mode:</span>
<span class="f_Para">Displays the current Internet Explorer</span><span class="f_ListContinue"> browser</span><span class="f_Para"> operating mode:</span>


Line 14: Line 14:


<span class="f_Para">Sample output: </span>
<span class="f_Para">Sample output: </span>
<p class="syntax">
<p class="syntax"><span style="font-size: 12px; font-family: 'Courier New',Courier,monospace;">Current ie settings</span>
<span style="font-size: 12px; font-family: 'Courier New',Courier,monospace;">Current ie settings</span>
<span style="font-size: 12px; font-family: 'Courier New',Courier,monospace;">...Proxy flags=(5)</span>
<span style="font-size: 12px; font-family: 'Courier New',Courier,monospace;">...Proxy flags=(5)</span>
<span style="font-size: 12px; font-family: 'Courier New',Courier,monospace;">...Proxy server=()</span>
<span style="font-size: 12px; font-family: 'Courier New',Courier,monospace;">...Proxy server=()</span>

Latest revision as of 18:44, 9 February 2023


Action:

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)
Client menu: --
Introduced: Build 62