mirror of
https://github.com/actions/runner-images.git
synced 2025-12-14 22:05:17 +00:00
13 lines
537 B
PowerShell
13 lines
537 B
PowerShell
################################################################################
|
|
## File: Wait-WindowsUpdatesForInstall.ps1
|
|
## Desc: Wait for installation windows updates to complete
|
|
################################################################################
|
|
|
|
Invoke-SBWithRetry -RetryCount 10 -RetryIntervalSeconds 120 -Command {
|
|
$inProgress = Get-WindowsUpdatesHistory | Where-Object Status -eq "InProgress"
|
|
if ( $inProgress ) {
|
|
$title = $inProgress.Title -join "`n"
|
|
throw "InProgress: $title"
|
|
}
|
|
}
|