我正在尝试通过 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'。” 我遇到了这个链接,这个作者建议删除远程调试器,但我仍然没有运气,我得到了错误。