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

PowerShell: Get Users and Computers Inside an OU

# getUsersAndComputersInActiveDirectory.ps1 $ouName="Test OU" $ouPath = "ou=$ouName,dc=kimconnect,dc=yoyo" $csvExportFile = 'c:\data\users_in_ou_$ouName.csv' $users=Get-ADUser -Filter * -SearchBase $ouPath…

How to turn on automatic logon in Windows XP that is joined to a domain

Start - Run - regedit - [enter] Locate the following registry key: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsNT\CurrentVersion\Winlogon Double-click DefaultUserName,…

How To Use NXLog On A Windows Client

Step 1: Setup Server - Install a log aggregation server is out of scope of…
Other project: DragonCoin.com