Skip to content
This repository has been archived by the owner on Oct 24, 2023. It is now read-only.

chore: Install sept 2021 security patches in Windows VHDs #4654

Merged
merged 2 commits into from Sep 17, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions vhd/packer/configure-windows-vhd.ps1
Expand Up @@ -199,9 +199,9 @@ function Install-WindowsPatches {
# then you can get download links by searching for specific KBs at http://www.catalog.update.microsoft.com/home.aspx

# Find a specific patch at https://www.catalog.update.microsoft.com/Search.aspx?q=<KB-number>
# Cumulative updates for WS 2019 from July 13, 2021
# https://www.catalog.update.microsoft.com/Search.aspx?q=KB5004244
$patchUrls = @("http://download.windowsupdate.com/d/msdownload/update/software/secu/2021/07/windows10.0-kb5004244-x64_5685623313a6de061e0c42fed3391c29750a6b1b.msu")
# Cumulative updates for WS 2019 from Setp 14, 2021
# https://www.catalog.update.microsoft.com/Search.aspx?q=KB5005568
$patchUrls = @()
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

so this means that for this image version we don't add any targeted patches?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Correct, this time the VHD we are starting with already containers the Sept 2021 patches.
Normally it takes a few days for the base marketplace images to become available to we start with a base image from the previous month and apply this months patches.
For this month the base image was already available by the time we authored the PR.

}
'2004' {
# Windows Server, Version 2004 update history can be found at https://support.microsoft.com/en-us/help/4555932
Expand Down
2 changes: 1 addition & 1 deletion vhd/packer/windows-2019-vars.json
Expand Up @@ -2,6 +2,6 @@
"image_publisher": "MicrosoftWindowsServer",
"image_offer": "WindowsServer",
"image_sku": "2019-Datacenter-Core-smalldisk",
"image_version": "17763.1999.2106060321",
"image_version": "17763.2183.2109130127",
"windows_server_version": "2019"
}