を使用してASP.NETアプリから実行可能ファイルを実行する必要がありますProcess
。.exeファイルはASP.NETプロジェクト内にあります-'ProjectRoot/Utilities /utility.exe'
このコードが実行に失敗するのはなぜですか?
string path = Server.MapPath("/Utilities/");
string args = " etc etc";
Process p = Process.Start(new ProcessStartInfo(path + "utility.exe", args));
p.WaitForExit(3000);
私もやってみ"\\utility.exe"
ました。