我正在運行Powershell 5並嘗試使用Set-AzureRmWebApp(而不是Set-AzureResource)來設置「Always關於「web應用程序的屬性。Azure:Powershell:Set-AzureRmWebApp:如何設置「alwaysOn」屬性
我的基本代碼片段與名爲「myWebApp」一個運行的Web App開始,看起來是這樣的:
$name = "myWebApp"
$resourceGroupName = "myResourceGroup"
$app_settings = @{"WEBSITE_LOAD_CERTIFICATES"="*";"CommonDatabase"="Common";"WEBSITE_NODE_DEFAULT_VERSION"="0.10.32"}
$result1 = Set-AzureRmWebApp -ResourceGroupName $resourceGroupName -AppSettings $app_settings -Name $name
$result2 = Set-AzureRmResource -ResourceGroupName $resourceGroupName -ResourceType Microsoft.Web/sites/config -ResourceName $this.name -PropertyObject $propertiesObject -ApiVersion 2015-08-01 -Force
第一集-AzureRmWebApp聲明的作品。它將所有變量設置爲$ app_settings,並且它們在Azure Portal刀片中對於myWebApp變得可見。
我試着用「永遠在線」 =上在$ app_settings用創建AzureRmWebApp一個屬性,它出現在應用程序設置子列表中的「myWebApp」的性質在Azure的門戶刀片,但在一般設置中的「始終打開」的實際屬性保持關閉。
我在另一個網站上看到,使用Set-AzureRmResource會工作,所以我嘗試了,但它失敗了。
我需要在Powershell中設置Azure WebApp的常規設置中的屬性,特別是「Always On」?
的可能的複製[是否有可能使一直在通過管理/資源管理API Azure的網站?](http://stackoverflow.com/questions/26756644/is-it-possible-to -enable-always-on-for-azure-websites-through-management-resourc) – sharbag
Look there:http://stackoverflow.com/a/36811987/1275334 – sharbag