Skip to content

Instantly share code, notes, and snippets.

@doeringp
Created October 25, 2017 11:06
Show Gist options
  • Save doeringp/f859b1dd762b4e60de5e749fffb83574 to your computer and use it in GitHub Desktop.
Save doeringp/f859b1dd762b4e60de5e749fffb83574 to your computer and use it in GitHub Desktop.
PowerShell: Waiting for an action to complete
do {
Write-Host "." -NoNewline
Start-Sleep -Seconds 3
} until (Get-HotFix -Id KB2693643 -ErrorAction SilentlyContinue)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment