all!
I am using the dynamic library "Microsoft.Deployment.WindowsInstaller.dll" (from Windows Installer XML, that is, http://wixtoolset.org/), in my C# project, to install a MSI package programatically:
using System;
using Microsoft.Deployment.WindowsInstaller;
private static void InstallWIXML(string msiPackage)
{
Installer.InstallProduct(msiPackage, "REBOOT=R");
}
. But I don't know how to make this automatic, not restartable, quiet, installation. This InstallWIXML
method does a manual (it is case dependent!), not restartable, not quiet (it is case dependent!), installation.
Thanks for some help!
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…