xxxxxxxxxx
Option Explicit
Dim Title,Answer,ws,Site
Site = "https://stackoverflow.com/"
Title = "Open iexplore.exe"
Answer = MsgBox("Did you want to open iexplore.exe ?",VbQuestion+VbYesNo,Title)
If Answer = vbYes Then
set ws = CreateObject("wscript.shell")
ws.run("iexplore.exe" &" "& Site)
End If
Wscript.Quit()