Example: Remove platform and configuration options from existing pages
You can remove links to the client for Windows CE.
- Open
allclients.html
orclients.html
in a text editor. -
Delete the following lines from the file:
else
{
document.write('<a href="installCE.html">Windows CE Client</a><br>');
}
- Save the file.
You can also prevent the embedded windows option from being presented to Internet Explorer users
- Open
allclients.html
orclients.html
in a text editor. -
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>');
}
-
Change the lines to:
if(browser.msie)
{document.write('Microsoft ActiveX Control: <a href="logon.html?direct=true">Loose</a><br>');
}
- Save the file.