Pues no le veo problema pasarlo a vb.net..
En las faq´s puse un conversor, en este caso es casi lo mismo..
así sería en vb.net
Cita: 'Create the ProcessInfo object
Dim psi As new System.Diagnostics.ProcessStartInfo("tu_archivo.ex e")
psi.UseShellExecute = false
psi.RedirectStandardOutput = true
psi.RedirectStandardInput = true
psi.RedirectStandardError= true
psi.WorkingDirectory = sPath
'Start the process
dim proc As System.Diagnostics.Process = System.Diagnostics.Process.Start(psi)
'Close the process
proc.Close()
Salu2