Can anyone help me regarding this issue.
string strEnvironmentalPath = Environment.GetEnvironmentVariable("PATH");
startInfo = new ProcessStartInfo(@strEnvironmentalPath);
startInfo.UseShellExecute = false;
startInfo.FileName = "Knime.exe";
startInfo.Arguments = strParameters;
startInfo.CreateNoWindow = true;
Process = Process.Start(@startInfo);
Process.CloseMainWindow();
startInfo.WindowStyle = ProcessWindowStyle.Hidden;
Process.WaitForExit();
I get this error: System cannot find the file specified.