0
我試圖從localhost運行exe文件;如何從本地主機運行可執行文件
像:
string installerFilePath; installerFilePath = @"D:\MYInstaller.exe";
System.Diagnostics.Process installerProcess = new System.Diagnostics.Process();
installerProcess = System.Diagnostics.Process.Start(installerFilePath, "/q");
這裏製作安裝與出過沉默模式執行。使用下面的代碼
:它lanchin與出運行exe文件exe文件
string installerFilePath; installerFilePath ="http://localhost/BusinessAccounting/ReportViewer/MY.exe";
System.Diagnostics.Process installerProcess = new System.Diagnostics.Process();
installerProcess = System.Diagnostics.Process.Start(installerFilePath, "/q");
可以一個expalin用了lanching如何運行exe文件...