Reputation: 2421
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?
I am the only user left in the tenant and have global admin.
Upvotes: 5
Views: 1163
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