Launching windows installer from c#

  • Thread starter Thread starter R.A.
  • Start date Start date
using System.Diagnostics;
...
Process msiProcess = new Process();
ProcessStartInfo startInfo = new ProcessStartInfo("msiexec.exe", "your args
here");
msiProcess.StartInfo = startInfo;
msiProcess.Start();

hth

-Joel
--------------------
 
Back
Top