From 83a5e887f4f546b03818dfdc8e1e4c62b40d067a Mon Sep 17 00:00:00 2001 From: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com> Date: Mon, 21 Jun 2021 20:02:32 +0300 Subject: [PATCH] Revert "Don't install KB5003638 update as it breaks the VM (#3557)" (#3627) This reverts commit ff4ba2e7258b8183db5cc13d30a840222a149ac0. --- images/win/scripts/Installers/Install-WindowsUpdates.ps1 | 6 ------ 1 file changed, 6 deletions(-) diff --git a/images/win/scripts/Installers/Install-WindowsUpdates.ps1 b/images/win/scripts/Installers/Install-WindowsUpdates.ps1 index 4c02c9f45..eb19a3ea0 100644 --- a/images/win/scripts/Installers/Install-WindowsUpdates.ps1 +++ b/images/win/scripts/Installers/Install-WindowsUpdates.ps1 @@ -5,10 +5,4 @@ ################################################################################ Write-Host "Run windows updates" -# KB5003638 causes the windows server 2016 virtual machine to hang on shutdown step -if (Test-IsWin16) { - Get-WUInstall -MicrosoftUpdate - Write-Host "Hide update KB5003638" - Hide-WindowsUpdate -Confirm:$false -KBArticleID "KB5003638" -} Get-WUInstall -MicrosoftUpdate -AcceptAll -Install -IgnoreUserInput -IgnoreReboot