使用powershell app部署工具包我正在尝试编写一个脚本来推送Windows更新(MSU)。
这就是我所拥有的,但它似乎不起作用?
执行 - 处理 - 路径'Windows6.1-KB3033929-x64.msu' - 参数“/ quiet”
答案 0 :(得分:1)
使用wusa.exe
安装Msu文件。尝试:
$PathToMsu="$PSScriprRoot\somefile.msu" Execute-Process -Path 'wusa.exe' -Parameters "`"$PathToMsu`" /quiet /norestart"
您也可以考虑使用工具包中的Install-MSUpdates
,它为您为目录中的每个文件执行此操作。