I am getting this exception for process.start(). The system cannot find the file specified. But this happens after the function correctly starts and runs the program for 20 seconds. It seems like the process is still going when it throws this exception? This is a MS Access program an .mdb file I'm running.
string mdbPath = @"P:\MyProgram.mdb"
string parameterString = "";
var proc = System.Diagnostics.Process.Start(mdbPath, parameterString);
var procExited = proc.WaitForExit(2400000);