Posted On July 9, 2019

Windows 2016 Cumulative Roll-up Install

kimconnect 0 comments
blog.KimConnect.com >> Windows >> Windows 2016 Cumulative Roll-up Install

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"

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Active Directory GPO Practical Examples

Fonts Distribution---------------------------------A. Create an SMB share on an Intranet accessible directory \\SOFTWARE\FONTS\Kim-Connect.ttfB. Create a new…

Fix NetPlWiz and control userpasswords2 Grey-out Options

Problem: netplwiz has a grayed out 'Users must enter a user name and password to…

Use CMD to Kill All Instances of a Program / Process

This can be invoked in an un-elevated session. The command is: taskkill /F /IM <PROGRAM.EXE>…