mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-14 22:09:26 +00:00
11 lines
531 B
PowerShell
11 lines
531 B
PowerShell
################################################################################
|
|
## 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
|
|
Get-WUInstall -WindowsUpdate -AcceptAll -UpdateType Software -IgnoreReboot
|
|
Get-WUInstall -MicrosoftUpdate -AcceptAll -IgnoreUserInput -IgnoreReboot
|