通过 powershell cmdlet 生成 msp 文件
msp file through powershell cmdlet
我正在尝试使用 powershell 静默安装 windows 结构补丁文件 (.msp)。
我试过这个:
$argumentCU1 = "/i "+ '"' + $execCU1 +'"' + " /quiet"
Write-Host $argumentCU1
(Start-Process -FilePath msiexec.exe -ArgumentList $argumentCU1 -wait -verb runas).WaitForExit
其中 $execCU1 是文件的路径(UNC 路径)
但它甚至没有启动。
是否可以通过 powershell 执行 .msp?这个命令行正确吗?
谢谢
由于 .msp 文件是更新补丁,我需要使用“/update”而不是“/i”
因为“/i”参数用于安装 (msi) 而 /update 用于 msp 文件
就这么简单...
我正在尝试使用 powershell 静默安装 windows 结构补丁文件 (.msp)。
我试过这个:
$argumentCU1 = "/i "+ '"' + $execCU1 +'"' + " /quiet"
Write-Host $argumentCU1
(Start-Process -FilePath msiexec.exe -ArgumentList $argumentCU1 -wait -verb runas).WaitForExit
其中 $execCU1 是文件的路径(UNC 路径) 但它甚至没有启动。
是否可以通过 powershell 执行 .msp?这个命令行正确吗?
谢谢
由于 .msp 文件是更新补丁,我需要使用“/update”而不是“/i”
因为“/i”参数用于安装 (msi) 而 /update 用于 msp 文件
就这么简单...