Per leggere l'output di un'applicazione:
codice:
Imports System.Diagnostics
'...
Dim p As New Process, str As String
p.StartInfo.UseShellExecute = False
p.StartInfo.FileName = "eventualepercorso\nomeapplicazione.exe"
p.StartInfo.Arguments = "eventuali argomenti della linea di comando"
p.StartInfo.RedirectStandardOutput = True
p.Start()
str = p.StandardOutput.ReadToEnd()
p.WaitForExit()
; l'output si troverà in str.