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

Windows: How to Create Software Raid 1 Mirror of C:\ Volume or Windows System Drive

Desired Result: Required Work: # Check disksDISKPART> list diskDisk ### Status Size Free Dyn Gpt--------…

How to increase the database size limit on Exchange 2003 SP2

Connect to the Server that is running Exchange 2003 SP2 Click Start > Run >…

An Exercise in Discover Whether an Active Directory Account Has RDP Access to Windows Bastion Hosts

Check Computers: $computernames='RDPSERVER01','RDPSERVER02','RDPSERVER03' invoke-command -computername $computernames {get-localgroupmember 'remote desktop users'}|select PSComputername,Name # Sample output PS…