Example: Remove platform and configuration options from existing pages

You can remove links to the client for Windows CE.

  1. Open allclients.html or clients.html in a text editor.
  2. Delete the following lines from the file:

    else
    {
       document.write('<a href="installCE.html">Windows CE Client</a><br>');
    }

  3. Save the file.

 

You can also prevent the embedded windows option from being presented to Internet Explorer users

  1. Open allclients.html or clients.html in a text editor.
  2. Locate the following lines:

    if(browser.msie)
    {

    document.write('Microsoft ActiveX Control: <a href="logon.html?direct=true">Loose</a> | <a href="logon.html?direct=true&embed=true">Embedded</a><br>');
    }

  3. Change the lines to:

    if(browser.msie)
    {

    document.write('Microsoft ActiveX Control: <a href="logon.html?direct=true">Loose</a><br>');
    }

  4. Save the file.