这些答案似乎过于复杂或不够完整.在PowerShell控制台中运行安装程序有一些问题.一个MSI在
Windows subsystem运行,所以你不能只是调用它们(Invoke-Expression或者&).有些人声称通过管道将这些命令通过Out-Null或Out-Host进行工作,但是我没有观察到工作.
适用于我的方法是Start-Process
,静默安装参数为msiexec
.
$list = @( "/I `"$msi`"",# Install this MSI "/QN",# Quietly,without a UI "/L*V `"$ENV:TEMP\$name.log`"" # Verbose output to this log ) Start-Process -FilePath "msiexec" -ArgumentList $list -Wait
您可以从Start-Process命令获取exit code,并检查其通过/失败值. (这里是exit code reference)
$p = Start-Process -FilePath "msiexec" -ArgumentList $list -Wait -PassThru if($p.ExitCode -ne 0) { throw "Installation process returned error code: $($p.ExitCode)" }