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

Problem Solving Exercise: Auto Manufacturing Case

Sample Answer 1. Produce a problem statement:We are investigating the root cause of production delays…

User Profile Hive Cleanup Service

The User Profile Hive Cleanup service helps to ensure user sessions are completely terminated when…

How to Search for Installed Application by Name in PowerShell

One can search using the known Vendor or application Name as illustrated below: [testwindows]: PS…