You should be able to do this directly with the Process object. something like the following should do the trick (not tested however)

Code:
Dim myProcess As New Process
myProcess.StartInfo.FileName = "<path to the file you want to open>"
myProcess.StartInfo.UseShellExecute = True
myProcess.StartInfo.RedirectStandardOutput = False
myProcess.Start()
myProcess.Dispose()