J Joel Hendrix [MSFT] May 24, 2004 #2 using System.Diagnostics; ... Process msiProcess = new Process(); ProcessStartInfo startInfo = new ProcessStartInfo("msiexec.exe", "your args here"); msiProcess.StartInfo = startInfo; msiProcess.Start(); hth -Joel --------------------
using System.Diagnostics; ... Process msiProcess = new Process(); ProcessStartInfo startInfo = new ProcessStartInfo("msiexec.exe", "your args here"); msiProcess.StartInfo = startInfo; msiProcess.Start(); hth -Joel --------------------