Delete an enterprise application
In this article, you learn how to delete an enterprise application that was added to your Azure Active Directory (Azure AD) tenant.
When you delete and enterprise application, it will be held in a suspended state in the recycle bin for 30 days. During the 30 days, you can Restore the application. Deleted items are automatically hard deleted after the 30-day period. For more information on frequently asked questions about deletion and recovery of applications, see Deleting and recovering applications FAQs.
Prerequisites
To delete an enterprise application, you need:
- An Azure AD user account. If you don't already have one, you can Create an account for free.
- One of the following roles: Global Administrator, Cloud Application Administrator, Application Administrator, or owner of the service principal.
- An enterprise application added to your tenant
Delete an enterprise application
Sign in to the Azure portal and sign in using one of the roles listed in the prerequisites.
In the left menu, select Enterprise applications. The All applications pane opens and displays a list of the applications in your Azure AD tenant. Search for and select the application that you want to delete. For example, Azure AD SAML Toolkit 1.
In the Manage section of the left menu, select Properties.
At the top of the Properties pane, select Delete, and then select Yes to confirm you want to delete the application from your Azure AD tenant.
Important
Make sure you're using the AzureAD module. This is important if you've installed both the AzureAD module and the AzureADPreview module.
Run the following commands:
Remove-Module AzureADPreview Import-Module AzureAD
Connect to Azure AD PowerShell:
Connect-AzureAD
Get the list of enterprise applications in your tenant.
Get-AzureADServicePrincipal
Record the object ID of the enterprise app you want to delete.
Delete the enterprise application.
Remove-AzureADServicePrincipal -ObjectId 'd4142c52-179b-4d31-b5b9-08940873507b'
Connect to Microsoft Graph PowerShell:
Connect-MgGraph -Scopes 'Application.Read.All'
Get the list of enterprise applications in your tenant.
Get-MgServicePrincipal
Record the object ID of the enterprise app you want to delete.
Delete the enterprise application.
Remove-MgServicePrincipal -ServicePrincipalId 'd4142c52-179b-4d31-b5b9-08940873507b'
Delete an enterprise application using Graph Explorer.
To get the list of service principals in your tenant, run the following query.
GET https://graph.microsoft.com/v1.0/servicePrincipals
Record the ID of the enterprise app you want to delete.
Delete the enterprise application.
DELETE https://graph.microsoft.com/v1.0/servicePrincipals/{servicePrincipal-id}
Next steps
Feedback
Submit and view feedback for