Dim p As New Process
With p.StartInfo
.UseShellExecute = True
.FileName = "PATHTOEXECUTABLE\EXECUTABLE.EXE"
.Arguments = "ANYARGUMENTSHERE"
End With
p.Start()
p.WaitForExit() 'Only if you actually want the program to wait until that file is closed.
p.Dispose()