mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 22:26:56 +00:00
* documenation about powershell modules * add powershell modules documenation * add PSMODULES_ROOT_FOLDER
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
|