Skip to content

Instantly share code, notes, and snippets.

@m-gagne
Created December 6, 2016 20:37
Show Gist options
  • Save m-gagne/7ae738ca5795aa1cd802e6470d8e13f1 to your computer and use it in GitHub Desktop.
Save m-gagne/7ae738ca5795aa1cd802e6470d8e13f1 to your computer and use it in GitHub Desktop.
Stop all VMs in Azure Subscription
Get-AzureRmVM | ForEach-Object { Stop-AzureRmVM -ResourceGroupName $_.ResourceGroupName -Name $_.Name -Confirm:$false -Force }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment