我想删除azure中的服务计划,但它显示了App Service附加服务计划的错误。 "只能删除空的应用服务计划"。
服务计划概述显示0/0。这是azure中的一个错误,解决方法是什么?
答案 0 :(得分:0)
我会尝试使用Remove-AzureRmAppServicePlan cmdlet使用PowerShell删除服务计划。例如:
Login-AzureRmAccount
Remove-AzureRmAppServicePlan -ResourceGroupName "Default-Web-WestUS" -Name "ContosoASP"
注意:如果您在登录时有权访问多个订阅,则必须先使用Select-AzureRmSubscription
cmdlet选择所需的订阅。