我从我的 c#winforms 应用程序运行这个:
string ExecutableFilePath = @"Scripts.bat";
string Arguments = @"";
if (File.Exists(ExecutableFilePath )) {
System.Diagnostics.Process.Start(ExecutableFilePath , Arguments);
}
当它运行时,我会看到 cmd 窗口,直到它完成。
有没有办法让它运行而不向用户显示?