Powershell script to fetch Azure WebApp details
问题 I'm trying to write powershell script which gets all webapps and few properties of each azure web app. Below is the script i tried but it's giving me Http20Enabled is not valid property error. I think somehow i'm using the wrong scope. I need to get properties of Webapp and SiteConfig of that webapp in a single row in CSV file. Get-AzureRmWebApp | ForEach-Object { ($webapp = $_) | Get-AzureRmWebApp -ResourceGroupName {$webapp.ResourceGroup} -Name {$webapp.Name} | select -ExpandProperty