我有一個WindowsForm Application
和Form2
我有一個install button
。我想做一個事件,當我點擊install
玩executable file
誰在這裏的位置:D:\Mat\R2008a\win64
和名稱setup.exe
。額外的條件是:我想這個exe
與installer.ini
設置誰在這裏玩:如何使用安裝程序激活一個exe文件作爲事件?
string path = AppDomain.CurrentDomain.BaseDirectory.ToString();
string installerfilename = path + "installer.ini";
我要讓我的應用程序一樣安裝程序。
我試圖用這個代碼,但不工作:
private void Install_Click(object sender, EventArgs e)
{
string desktopPath = @"D:\Mat\NSIS\R2008a\win64";
ProcessStartInfo psi = new ProcessStartInfo();
psi.Arguments = "/s /v /qn /min";
psi.CreateNoWindow = true;
psi.WindowStyle = ProcessWindowStyle.Hidden;
psi.FileName = desktopPath + "\\" + "setup.exe";
psi.UseShellExecute = false;
Process.Start(psi);
this.Visible = false;
}
我想與installer.ini
文件運行setup.exe
。
我一點也不清楚你想做什麼 - 你有一些其他程序/對程序遵循相同的模式,你使用一個例子?如果是這樣,你能舉出例子嗎?如果沒有,可能沒有人會這樣做,因爲它不起作用(好)。 –
我編輯了我的文章。但我不明白什麼意思是「/ s/v/qn/min」。 – ben