CODE .vbs to close a browser window

Set WshShell = WScript.CreateObject(“WScript.Shell”)
WshShell.Run “iexplore http://www.example.com”, 9
‘ Give ie some time to load
WScript.Sleep 10000
‘close the browser
WshShell.SendKeys “%F”
WshShell.SendKeys “C”