2019-12-13 09:48:00 -05:00
|
|
|
################################################################################
|
|
|
|
|
## File: Install-WindowsUpdates.ps1
|
|
|
|
|
## Desc: Install Windows Updates.
|
2020-06-22 01:25:04 -07:00
|
|
|
## Should be run at end, just before SoftwareReport and Finalize-VM.ps1.
|
2019-12-13 09:48:00 -05:00
|
|
|
################################################################################
|
|
|
|
|
|
|
|
|
|
Write-Host "Run windows updates"
|
2021-06-10 09:19:50 +03:00
|
|
|
# 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"
|
|
|
|
|
}
|
2020-01-16 02:21:04 -05:00
|
|
|
Get-WUInstall -MicrosoftUpdate -AcceptAll -Install -IgnoreUserInput -IgnoreReboot
|