我正在尝试使用 cmd 文件从 Powershell 运行 MSI 安装命令。
我创建我的安装命令:
msiexec /i [insert here a HUGE amount of param values] /lv install.log /passive
然后我将它写入temp.cmd然后从 Powershell 执行如下:
$exitCode = (Start-Process -FilePath "temp.cmd" -Wait -Passthru).ExitCode
然后我收到以下错误消息:
CategoryInfo:OperationStopped:255:String
RuntimeExceptionfullyQualifiedErrorId
无法安装 [Msi 名称] MsiExec 返回:255
这是什么原因造成的?