6

Azure PowerShell を使用してスロット情報を取得しようとしています。

使用した情報を取得するには

Get-AzureWebsite -Name mywebsite -Slot staging

しかし、Azure PowerShell は以下のエラーをスローします:

Get-AzureWebsite : Requested value 'VS2015' was not found.
At line:1 char:1
+ Get-AzureWebsite -Name mywebsite -Slot staging
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : CloseError: (:) [Get-AzureWebsite], ArgumentException
    + FullyQualifiedErrorId : Microsoft.WindowsAzure.Commands.Websites.GetAzureWebsiteCommand

試してみるとGet-AzureWebsite -Name mywebsite、スロット名を含むデータが完全に表示されます

Name       : mywebsite
State      : Running
Host Names : {mywebsite.azurewebsites.net}

Name       : mywebsite(staging)
State      : Running
Host Names : {mywebsite-staging.azurewebsites.net}

Name       : mywebsite(dev)
State      : Running
Host Names : {mywebsite-dev.azurewebsites.net}

このエラーをグーグルで検索すると、 「要求された値 'VS2015' が見つかりませんでした。」私はこのリンクに出くわし、この著者はリモートデバッガーを削除することを提案していますが、まだエラーが発生しています。

4

2 に答える 2