Forum Discussion
alwaysLearner
Jun 08, 2025Iron Contributor
Unable to delete tenant
I want to delete a single tenant I've created some time ago using my personal MS account (@outlook.com). The goal is to start fresh. In the Manage tenants page I see this 'All initial checks passed. ...
Kidd_Ip
Jun 08, 2025MVP
Let's try to use PowerShell to manually remove any lingering enterprise applications:
- Open Windows PowerShell as an administrator.
- Run: Import-Module AzureAD
- Connect to Azure AD: Connect-AzureAD
- Retrieve enterprise applications: Get-AzureADServicePrincipal
- Identify and remove any remaining applications using: Remove-AzureADServicePrincipal -ObjectId <Object ID>