Sign up for the ITPro Today newsletter
Stay on top of the IT universe with commentary, news analysis, how-to's, and tips delivered to your inbox daily.
March 22, 2000
A. Internet Explorer has a kiosk mode which fills the entire screenwith no toolbars using:
iexplore -k
This may not be exactly what you want though so you could write a windowsscripting host program which starts an IE object with the toolbar disabled:
Dim objIE
Set objIE = WScript.CreateObject ("InternetExplorer.Application")
ObjIE.Toolbar = false
objIE.Navigate "http://www.savilltech.com"
objIE.Visible = true
If you save the file has ienobar.vbs and then execute with
cscript ienobar.vbs
IE will be started with no toolbars.
You May Also Like