Two things you can try with IE:Originally Posted by yetdog
1. You can put IE in "kiosk" mode that will take up the whole screen. See http://support.microsoft.com/?kbid=154780 for more info.
2. You can write a small VB script file that can remove the toolbars, etc when launching IE. For example, save this as a .vbs file and double click to launch:
This will launch IE w/o the toolbar -- you can get more info on this googlingCode:Dim objIE Set objIE = WScript.CreateObject ("InternetExplorer.Application") ObjIE.Toolbar = false objIE.Navigate "https://sub.domain.com" objIE.Visible = true
Goodluck!


LinkBack URL
About LinkBacks


