2019-12-13 09:48:00 -05:00
|
|
|
################################################################################
|
|
|
|
|
## File: Install-WindowsUpdates.ps1
|
|
|
|
|
## Desc: Install Windows Updates.
|
|
|
|
|
## Should be run at end just before Antivirus.
|
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
|
|
Write-Host "Run windows updates"
|
|
|
|
|
Install-Module -Name PSWindowsUpdate -Force -AllowClobber
|
2020-01-16 02:21:04 -05:00
|
|
|
Get-WUInstall -WindowsUpdate -AcceptAll -Install -UpdateType Software -IgnoreReboot
|
|
|
|
|
Get-WUInstall -MicrosoftUpdate -AcceptAll -Install -IgnoreUserInput -IgnoreReboot
|