如何删除没有Azure订阅的Azure企业应用程序?

时间:2020-11-03 22:30:34

标签: azure powershell azure-cloud-shell

我想从Azure门户中删除租户。

在删除租户之前,应删除所有企业应用程序:

enter image description here

有两种方法可以删除企业应用程序:

  1. 从Azure门户。转到要删除的应用程序,单击"Properties",单击"Delete"按钮。由于"Delete"按钮被禁用,此选项不可用。
  2. 将PowerShell命令与Azure Cloud Shell一起使用。该选项不可用,因为它指出了"No valid subscription found. You need an Azure subscription to use Azure Cloud Shell"

我不想仅为删除租户激活Azure订阅。

但是在这种情况下,所有选项都没有用。

还有其他方法吗?

1 个答案:

答案 0 :(得分:1)

您应该能够删除门户中的企业应用程序,确保使用Global admin帐户登录到门户。

如果仍然无法解决问题,请尝试在本地使用powershell(而不是在Cloud Shell中)。

1。安装AzureAD模块。

Install-Module -Name AzureAD

2。使用Global admin帐户登录。

Connect-AzureAD -TenantId <TenantId>

3。删除企业应用程序。

Remove-AzureADServicePrincipal -ObjectId <app objectid got from the portal>