Dim RetVal As Long
Dim WSH As IWshShell
Dim WaitForTermination as Boolean
Dim CommandLine as String
Set WSH = New IWshShell_Class
CommandLine = "<Your Program Pathname Here>"
WaitForTermination = True
RetVal = WSH.Run(CommandLine, vbNormalFocus, WaitForTermination)
MsgBox "Process returned: " & RetVal
Set WSH = Nothing