Quantcast
Channel: MSDN Blogs
Viewing all articles
Browse latest Browse all 5308

How to list all App Services within an App Service plan using PowerShell

$
0
0

Here is the PowerShell command to list out all the App Services running on an App Service Plan.

$asp=Get-AzureRmAppServicePlan -ResourceGroupName "<RGNAME>" -Name "<ASPNAME<"
$apps=Get-AzureRmWebApp -AppServicePlan $asp
Foreach($app in $apps) { $app.Name }

Viewing all articles
Browse latest Browse all 5308

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>