Code to launch an Internet Explorer window from VBscript.
set IE = WScript.CreateObject("InternetExplorer.Application") dim ObjTitle IE.Navigate("about:blank") IE.Document.Title = "Software Update" IE.FullScreen = 1 IE.Left = 0 IE.Top = 0 IE.MenuBar = 0 IE.Toolbar = 0 IE.StatusBar = 0 IE.Width …