Ok, we have two options here,
OR
the very same code works for me in 9.5. Hope this helps.
Code:
Launch_App("http://www.google.com")
Public Sub Launch_App(URL)
Set objBrowser = Createobject("InternetExplorer.Application")
ObjBrowser.Visible = True
objBrowser.Navigate URL
Set objBrowser = Nothing
End Sub
OR
Code:
systemutil.run "iexplore","http://www.google.com"
the very same code works for me in 9.5. Hope this helps.