Process executeProcess = new Process();
//create new instance for executeProcess
executeProcess.StartInfo.FileName = "Wincomm.exe";
//assign faeDetect.exe to open
executeProcess.StartInfo.CreateNoWindow = true;
executeProcess.StartInfo.RedirectStandardError = true;
executeProcess.StartInfo.UseShellExecute = false;
executeProcess.Start();
executeProcess.WaitForExit();