Restart, start and stop all Azure Web Apps in resource group using PowerShell
This post is short but useful. We need just two lines (we can combine it to one): $allSites = Get-AzureRmWebApp -ResourceGroupName resource-group-name @($allSites).GetEnumerator() | Restart-AzureRmWebApp The trick »