mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-16 06:46:48 +00:00
9 lines
433 B
PowerShell
9 lines
433 B
PowerShell
################################################################################
|
|
## File: Install-WindowsUpdates.ps1
|
|
## Desc: Install Windows Updates.
|
|
## Should be run at end, just before SoftwareReport and Finalize-VM.ps1.
|
|
################################################################################
|
|
|
|
Write-Host "Run windows updates"
|
|
Get-WUInstall -MicrosoftUpdate -AcceptAll -Install -IgnoreUserInput -IgnoreReboot
|