How do I delete an application from azure active directory?

前端 未结 5 524
别跟我提以往
别跟我提以往 2021-02-06 21:26

The title of my issue is clear enough by itself I hope.... I have only one application in my Applications list in Azure Active Directory. I would like to delete that, because it

5条回答
  •  一生所求
    2021-02-06 22:14

    Unable to delete Azure AD due to Enterprise Apps (Delete grayed out)

    Login to a Powershell (Admin)

    1. Install-Module -Name MSOnline
    2. connect-msolservice (Provide GA Creds)

    CAUTION: Following step may delete all the objects/applications recursively and may present multiple errors as well, but in the end, all this will help you to be finally able to delete the Azure AD instance successfully

    1. Get-MsolServicePrincipal -All | Remove-MsolServicePrincipal
    2. Sign-out and Sign-in Azure Portal
    3. All enterprise apps will now be deleted --> You can Delete Azure AD Directory now

提交回复
热议问题