Installation von KBs im .msu Format

Installation von Hotfixes im .msu Format

Installieren von noch nicht vorhanden KBs im .msu Format. Mit diesem Powershell-Skript installieren wir diese aus einem Array heraus.

Powershell anzeigen

$SourceFolder = “C:\InstallKB”
$KBArrayList = New-Object -TypeName System.Collections.ArrayList

$KBArrayList.AddRange(@(“KB2775511″,”KB2533623″,”KB2639308″,”KB2670838″,”KB2729094″,”KB2731771″,””))

foreach ($KB in $KBArrayList) {
if (-not(Get-Hotfix -Id $KB)) {
Start-Process -FilePath “wusa.exe” -ArgumentList “$SourceFolder$KB.msu /quiet /norestart” -Wait }
}