Skip to content

Instantly share code, notes, and snippets.

@itpropro
Last active March 4, 2016 15:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save itpropro/fde81e32e122293c19bb to your computer and use it in GitHub Desktop.
Save itpropro/fde81e32e122293c19bb to your computer and use it in GitHub Desktop.
$OFS =’; ’
$Job = {Get-VM|Stop-VM}
Start-Job $Job
While((Get-VM|? State -NE 'Off').Count -gt 0) {Write-Host 'VMs' ([string](Get-VM|? State -ne 'Off').Name) 'shutting down...';Start-Sleep 1}
Stop-Computer -Force
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment