Restart multiple azure app services
Jonas Samuelsson
Posted on April 9, 2021
We sometimes need to restart all azure app services in a subscription or service plan. It's very time consuming to do manually in the portal as it has to be done per app service but using az cli
it's really easy. =)
az webapp list | convertfrom-json | foreach { az webapp restart --ids $_.id }
💖 💪 🙅 🚩
Jonas Samuelsson
Posted on April 9, 2021
Join Our Newsletter. No Spam, Only the good stuff.
Sign up to receive the latest update from our blog.