使用PowerShell批量安装msi后辍软件,在批处理中,使用msiexec file.msi /wait,但在PowerShell中可以借助于msiexec实现,需要的朋友参考下。
如果要安装的MSI包不止一个,可不能使用Invoke-Item,否则Powershell不会等待前一个安装包安装完毕,就已经运行下一个安装包了。
如果在批处理中,可能会使用msiexec file.msi /wait。在powershell中可以借助于msiexec。
首先,把安装包路径存储到数组中:
复制代码 代码示例:
$msi = @("c:file1.msi", "c:file2.msi", "c:file2.msi")
然后,使用Start-Process的-wait参数,等到前一个安装程序运行完毕后,再启动下一个:
复制代码 代码示例:
foreach($_ in $msi)
{
Start-Process -FilePath msiexec -ArgumentList /i, $_, /qn -Wait
}
方法二,把输出结果重定向一些Null,也能保证程序等待安装完成:
复制代码 代码示例:
foreach($_ in $msi)
{
msiexec /i $_ /qn | out-null
}