Use this method to apply cumulative roll-ups that would not successfully apply via Automatic Updates:
# Download and Extract
$KB4509475="http://download.windowsupdate.com/d/msdownload/update/software/updt/2019/06/windows10.0-kb4509475-x64_34692c59b0df7a74ea524767def2c34d6d1b3dd0.msu"
$tempfile="C:\Temp\KB4509475.msu"
$extractionDirectory="C:\temp\KB4509475\"
md $extractionDirectory
New-Item -ItemType Directory -Force -Path C:\Temp
(new-object System.Net.WebClient).DownloadFile($KB4509475,$tempfile)
expand -F:* $win2016CredSspPatch $extractionDirectory
# Install the patch
#wusa.exe -kb $tempfile /norestart /quiet #this install method is very slow
$kbCab="C:\Temp\Windows10.0-KB4103723-x64.cab";
$log="C:\Temp\KB4103723_Log.txt"
# dism /ONLINE /add-package /packagepath:"$kbCab" /quiet /norestart /logpath:"$log"
Categories: