1

我正在尝试使用 powershell 静默安装 Windows Fabric 补丁文件 (.msp)。

我试过这个:

$argumentCU1 = "/i "+ '"' + $execCU1 +'"' + " /quiet"
Write-Host $argumentCU1
(Start-Process -FilePath msiexec.exe -ArgumentList $argumentCU1 -wait -verb runas).WaitForExit

其中 $execCU1 是文件的路径(UNC 路径),但它甚至不会启动。

甚至可以通过powershell执行.msp吗?这个 cmd 行正确吗?

谢谢你

4

1 回答 1

3

由于 .msp 文件是更新补丁,我需要使用“/update”而不是“/i”

因为“/i”参数用于安装 (msi) 而 /update 用于 msp 文件

就那么简单...

于 2015-07-16T14:08:55.467 回答