2

私の環境には "Standard" という名前のアプリ サービスがあります。現在、アプリ サービスは Standard レベルの Small 1 インスタンスで構成されています。

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

よくわかりません、何が問題なのですか?そして、このエラーが正確に何を意味するのか。

情報については、set-AzureRMResource などの他の powershell コマンドを問題なく実行できます。環境の問題ではありません。

どんな助けでも感謝..

ありがとう

4

1 に答える 1

0

使用している Azure Powershell のバージョンは何ですか? これは、Azure Powershell 1.0.0 の既知の問題です。そのバージョンを使用している場合は、代わりに以下のバージョンを使用してください。問題が解決しない場合は、返信してください。

https://github.com/Azure/azure-powershell/releases/tag/v1.0.1-November2015

于 2015-11-16T19:14:35.323 に答える