私はこれを私のc#winformsアプリから実行しています:
string ExecutableFilePath = @"Scripts.bat";
string Arguments = @"";
if (File.Exists(ExecutableFilePath )) {
System.Diagnostics.Process.Start(ExecutableFilePath , Arguments);
}
それが実行されると、終了するまでcmdウィンドウが表示されます。
ユーザーに表示せずに実行する方法はありますか?