exe file using Process.Start()
but it throws the "Win32Exception the parameter is incorrect".
Process p = new Process();
Process.Start("C:\Program Files\APS2PP\keyl2000.exe");
I can run this file through command prompt successfully.
Process.Start("C:\Program Files\APS2PP\keyl2000.exe")
Somebody edited your question, fixing your mistake by accident. Use double backslashes or put a @ in front of the string.
Process.Start(@"C:\Program Files\APS2PP\keyl2000.exe");