I have this running from my c# winforms app:
string ExecutableFilePath = @"Scripts.bat"; string Arguments = @""; if (File.Exists(ExecutableFilePath )) { System.Diagnostics.Process.Start(ExecutableFilePath , Arguments); } When that runs I get to see the cmd window until it finishes.
Is there a way to get that to run without showing it to the user?