ubienewbie
ubienewbie

Reputation: 2421

What do I need to do to delete this Azure Active Directory tenant which has passed all initial checks?

Microsoft's UI shows me that all initial checks have passed and they can delete this Azure Active Directory tenant. Followed by the message that Microsoft is in fact unable to delete the tenant. Anything else I can do to actually delete this?

enter image description here

EDIT 1 Seems I'm getting 403 enter image description here

I am the only user left in the tenant and have global admin.

enter image description here

Upvotes: 5

Views: 1163

Answers (1)

RajkumarPalnati
RajkumarPalnati

Reputation: 689

As per Microsoft Documentation it says,
We can delete the tenants (enterprise applications) which cannot be deleted in portal by using below PowerShell commands.

Below are the referenced steps from the above documentation,

  • Open PowerShell as an administrator.
  • Run Connect-AzAccount -tenant <TENANT_ID>.
  • Sign in to Azure AD in the Global Administrator role.
  • Run Get-AzADServicePrincipal | ForEach-Object { Remove-AzADServicePrincipal -ObjectId $_.Id }.

For more information on this PowerShell command, see Remove-AzureADServicePrincipal.

And the Troubleshoot failed service request: Error 403 (Forbidden).

Upvotes: 1

Related Questions