Azure: Powershell: Set-AzureRmWebApp: How to set the “alwaysOn” property
问题 I am running Powershell 5 and trying to manipulate my Azure WebApp object using Set-AzureRmWebApp (and NOT Set-AzureResource) to set the "Always On" property of the web app. My basic code snippet starts with a running web app named "myWebApp" , and looks like this: $name = "myWebApp" $resourceGroupName = "myResourceGroup" $app_settings = @{"WEBSITE_LOAD_CERTIFICATES"="*";"CommonDatabase"="Common";"WEBSITE_NODE_DEFAULT_VERSION"="0.10.32"} $result1 = Set-AzureRmWebApp -ResourceGroupName