我正在VS2017中使用Visual Studio安装程序2017。但是,我不知道如何更新安装文件。 我将安装程序版本从1.0.1更改为1.0.2。然后执行以下代码。
Process p = new Process();
logger.Info(path);
p.StartInfo.FileName = "msiexec.exe";
p.StartInfo.Arguments = $"/i C:\\file.msi /quiet";
p.Start();
p.WaitForExit();
但是,它不起作用。如何升级? 我想通过其他过程安装静默选项。