notes/VBS open Internet Explorer with no Toolbar or Status Bar a-GrTLstxu.sh
Set WshShell = WScript.CreateObject("WScript.Shell")
Dim objIExplorer
Set objIExplorer = WScript.CreateObject ("InternetExplorer.Application")
objIExplorer.Toolbar = false
objIExplorer.Navigate "http://www.filmsbykris.com"
objIExplorer.Visible = true
objIExplorer.StatusBar = false
'objIExplorer.Left = 40
'objIExplorer.Top = 300
objIExplorer.Width = 800
objIExplorer.Height = 600
objIExplorer.Resizable=false
Wscript.Sleep 500
WshShell.AppActivate "Films By Kris"
syntax highlighted by Code2HTML, v. 0.9.1