Quit Method Example
Set objIExplorer = CreateObject("internetexplorer.application")
objIExplorer.visible = True
objIExplorer.navigate "yahoo.com"
Do While objIExplorer.Busy
WScript.Sleep 1000
Loop
objIExplorer.quit
See all Methods & Properties of InternetExplorer Object here.