Process.Start. , StandardError StandardOutput Process. RedirectStandardOutput true.
MSDN:
Process p = new Process();
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.FileName = "yourbatchfile.bat";
p.Start();
string output = p.StandardOutput.ReadToEnd();
p.WaitForExit();