0

我在名爲「標準」的環境中有應用服務。目前,應用服務是在標準層小1實例中配置的。Azure應用服務縮放powershell

使用PowerShell我試圖擴展應用程序服務,這將反過來縮放這個應用程序服務內的Web應用程序。 我想將尺寸更改爲中等,實例更改爲2.

這是我的代碼段。

Login-AzureRmAccount 
Set-AzureRMAppServicePlan -Name Standard -ResourceGroupName 
MyWebAppRG - NumberofWorkers 2 -WorkerSize Medium 

當我運行這個命令我收到以下錯誤

Set-AzureRMAppServicePlan : Could not load file or assembly 'Microsoft.Rest.ClientRuntime.Azure.Authentication, Version=0.11.0.0, 
Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified. 
At line:11 char:1 
+ Set-AzureRMAppServicePlan -Name Standard -ResourceGroupName MyWebAppRG -Numbero ... 
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
    + CategoryInfo   : NotSpecified: (:) [Set-AzureRMAppServicePlan], FileNotFoundException 
    + FullyQualifiedErrorId : System.IO.FileNotFoundException,Microsoft.Azure.Commands.WebApps.Cmdlets.AppServicePlans.SetAzureAppSe 
    rvicePlanCmdlet 

我不知道,有什麼不對嗎?這個錯誤究竟意味着什麼。

有關信息,我可以運行其他的powershell命令,例如set-AzureRMResource等。所以不是一個環境問題。

知道的任何幫助..

感謝

你用什麼在Azure Powershell的版本

回答