Our C# application will launch a console application executable by doing this: Process correctionProcess = Process.Start(exePath, rawDataFileName);
Customer wants to hide that console window which is from their application. Is that possible for us to do that?
You can create the
ProcesswithProcessStartInfo, where theCreateNoWindowandUseShellExecuteproperties are set to true and false respectively.