How to display all ongoing deployments on Azure
Currently, I didn’t find a user interface method to display all ongoing deployments. However, as always PowerShell is our friend! The Get-AzureRmResourceGroupDeployment cmdlet gives you all deployments, whether they are ongoing, failed, or succeeded. As an input of this cmdlet, you can target the resource groups you desire with the Get-AzureRmResourceGroup cmdlet. For example, if […]