Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
312 views
in Technique[技术] by (71.8m points)

.net - Specify quiet and norestart on msi installation executed, through visual c# app, by Microsoft.Deployment.WindowsInstaller.dll (Windows Installer XML)

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

I used the following code, like in my comment of the Christopher Painter's answer:

using System;
using Microsoft.Deployment.WindowsInstaller;

private static void InstallWIXML(string msiPackage)
{
    Installer.SetInternalUI(InstallUIOptions.Silent);
    Installer.InstallProduct(msiPackage, "REBOOT=R");
}

. It works for my question.

Thanks for the Christopher Painter's answer and comments, too!


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...