ProcessStartInfo startInfo = new ProcessStartInfo();startInfo.Arguments = "/i "+"\""+Directory.GetCurrentDirectory()+"\\"+msiPath +"\""+" /q";startInfo.FileName = "msiexec.exe";startInfo.Verb = "runas";Process installProcess = Process.Start(startInfo);
Well, this is what I did, and it works.