Can't delete our old tenant

Sébastien GENESTA 26 Reputation points
2021-11-03T08:44:18.277+00:00

Hi,

Following tenant migration (to another Azure tenant), i'm trying to delete the old one.

Even if there's no more enterprise applications, the delete process is in warn status saying "delete all enterprise applications"

I have delete my subscription so i'm now unable to contact Azure support to ask for help.

Thanks.

Microsoft Entra ID
Microsoft Entra ID
A Microsoft Entra identity service that provides identity management and access control capabilities. Replaces Azure Active Directory.
19,664 questions
0 comments No comments
{count} vote

Accepted answer
  1. JamesTran-MSFT 36,456 Reputation points Microsoft Employee
    2021-11-04T17:14:38.82+00:00

    @Sébastien GENESTA
    Thank you for the detailed responses!

    Based off your issue, I found a related thread and an internal support request with some additional troubleshooting steps that might help resolve your issue. However, if these steps don't work, you can definitely try creating an Azure Support Request without an active subscription to get your Azure AD tenant deleted.

    Delete tenant - Enterprise Applications

    1. Run Windows PowerShell ISE as Administrator
    2. Run the command Install-Module MSOnline (You may skip this command if you already have Msol module installed on your machine)
    3. Run the command Connect-Msolservice and enter the credential of your Global Admin account (eg. User: admin@[organization].onMicrosoft.com + password)
    4. Run the command Get-MsolServicePrincipal | Select Displayname
    5. Run the command Get-MsolServicePrincipal | Remove-MsolServicePrincipal
    6. Please kindly ignore the errors as there will be some build-in Microsoft Apps cannot be deleted.
    7. Log in back to your Azure tenant, and try one more time to delete it.

    Enterprise Applications should now have a green check mark and you should be able to go through the delete process.

    Create a Support Request to delete Tenant:
    If the above steps don't resolve your issue, you can create an Azure Technical Support Request by navigating to your Azure Active Directory -> New Support Request
    146568-image.png

    I hope this helps!

    If you have any other questions, please let me know.
    Thank you for your time and patience throughout this issue.

    ----------

    Please remember to "Accept Answer" if any answer/reply helped, so that others in the community facing similar issues can easily find the solution.

    1 person found this answer helpful.
    0 comments No comments

7 additional answers

Sort by: Most helpful
  1. Siva-kumar-selvaraj 15,556 Reputation points
    2021-11-03T09:02:15.843+00:00

    Hello @Sébastien GENESTA ,

    Thanks for reaching out.

    If there are no active subscription then If you find that there are still enterprise applications that you can't delete in the portal, you can use the following PowerShell commands to remove them. For more information on this PowerShell command, see Remove-AzureADServicePrincipal.

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

    To know more about, refer : https://learn.microsoft.com/en-us/azure/active-directory/enterprise-users/directory-delete-howto#if-you-cant-delete-the-organization

    Hope this helps.

    ------
    Please "Accept the answer" if the information helped you. This will help us and others in the community as well.

    0 comments No comments

  2. Sébastien GENESTA 26 Reputation points
    2021-11-03T09:37:44.83+00:00

    Hi,

    Thanks for your quick answer!

    The commands didn't work I tried doing following:

    Connect-AzureAD -TenantId xxxxxx-xxxxxxx-xxxxxxx-xxxxxxxx
    $ObjectIds = (Get-AzureADServicePrincipal).ObjectId
    Foreach($ObjectId in $ObjectIds)
    {
    Remove-AzureADServicePrincipal -objectid $ObjectId
    }

    N.B: -Force is not recognized on Remove-AzureADServicePrincipal

    I have encountered following errors and I still can't delete tenant (same issues with enterprise applications):


    Remove-AzureADServicePrincipal : Error occurred while executing RemoveServicePrincipal
    Code: Request_BadRequest
    Message: Specified App Principal ID is Microsoft Internal.
    RequestId: 247765a9-170b-44e1-8fb3-c9ace4731fb5
    DateTimeStamp: Wed, 03 Nov 2021 09:32:56 GMT
    HttpStatusCode: BadRequest
    HttpStatusDescription: Bad Request
    HttpResponseStatus: Completed
    Au caractère Ligne:5 : 1

    • Remove-AzureADServicePrincipal -objectid $ObjectId
    • ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    • CategoryInfo : NotSpecified: (:) [Remove-AzureADServicePrincipal], ApiException
    • FullyQualifiedErrorId : Microsoft.Open.AzureAD16.Client.ApiException,Microsoft.Open.AzureAD16.PowerShell.RemoveServicePrincipal

    Remove-AzureADServicePrincipal : Error occurred while executing RemoveServicePrincipal
    Code: Request_BadRequest
    Message: Specified App Principal ID is Microsoft Internal.
    RequestId: a1f0adec-ed2a-490f-89d4-28e1fe701b08
    DateTimeStamp: Wed, 03 Nov 2021 09:32:56 GMT
    HttpStatusCode: BadRequest
    HttpStatusDescription: Bad Request
    HttpResponseStatus: Completed
    Au caractère Ligne:5 : 1

    • Remove-AzureADServicePrincipal -objectid $ObjectId
    • ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    • CategoryInfo : NotSpecified: (:) [Remove-AzureADServicePrincipal], ApiException
    • FullyQualifiedErrorId : Microsoft.Open.AzureAD16.Client.ApiException,Microsoft.Open.AzureAD16.PowerShell.RemoveServicePrincipal

    Remove-AzureADServicePrincipal : Error occurred while executing RemoveServicePrincipal
    Code: Request_BadRequest
    Message: Specified App Principal ID is Microsoft Internal.
    RequestId: d8fcd521-df51-4464-99f1-07588772c008
    DateTimeStamp: Wed, 03 Nov 2021 09:32:57 GMT
    HttpStatusCode: BadRequest
    HttpStatusDescription: Bad Request
    HttpResponseStatus: Completed
    Au caractère Ligne:5 : 1

    • Remove-AzureADServicePrincipal -objectid $ObjectId
    • ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    • CategoryInfo : NotSpecified: (:) [Remove-AzureADServicePrincipal], ApiException
    • FullyQualifiedErrorId : Microsoft.Open.AzureAD16.Client.ApiException,Microsoft.Open.AzureAD16.PowerShell.RemoveServicePrincipal

    Remove-AzureADServicePrincipal : Error occurred while executing RemoveServicePrincipal
    Code: Request_BadRequest
    Message: Specified App Principal ID is Microsoft Internal.
    RequestId: 69d7b6a3-ebb8-4c79-b70d-781f5a2c9969
    DateTimeStamp: Wed, 03 Nov 2021 09:32:58 GMT
    HttpStatusCode: BadRequest
    HttpStatusDescription: Bad Request
    HttpResponseStatus: Completed
    Au caractère Ligne:5 : 1

    • Remove-AzureADServicePrincipal -objectid $ObjectId
    • ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    • CategoryInfo : NotSpecified: (:) [Remove-AzureADServicePrincipal], ApiException
    • FullyQualifiedErrorId : Microsoft.Open.AzureAD16.Client.ApiException,Microsoft.Open.AzureAD16.PowerShell.RemoveServicePrincipal

    Remove-AzureADServicePrincipal : Error occurred while executing RemoveServicePrincipal
    Code: Request_BadRequest
    Message: Specified App Principal ID is Microsoft Internal.
    RequestId: 63dbb9a4-67d0-449f-8810-70391fc91074
    DateTimeStamp: Wed, 03 Nov 2021 09:32:59 GMT
    HttpStatusCode: BadRequest
    HttpStatusDescription: Bad Request
    HttpResponseStatus: Completed
    Au caractère Ligne:5 : 1

    • Remove-AzureADServicePrincipal -objectid $ObjectId
    • ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    • CategoryInfo : NotSpecified: (:) [Remove-AzureADServicePrincipal], ApiException
    • FullyQualifiedErrorId : Microsoft.Open.AzureAD16.Client.ApiException,Microsoft.Open.AzureAD16.PowerShell.RemoveServicePrincipal

    Remove-AzureADServicePrincipal : Error occurred while executing RemoveServicePrincipal
    Code: Request_BadRequest
    Message: Specified App Principal ID is Microsoft Internal.
    RequestId: 30b579a4-ca83-48bf-a630-76297f6efa24
    DateTimeStamp: Wed, 03 Nov 2021 09:33:00 GMT
    HttpStatusCode: BadRequest
    HttpStatusDescription: Bad Request
    HttpResponseStatus: Completed
    Au caractère Ligne:5 : 1

    • Remove-AzureADServicePrincipal -objectid $ObjectId
    • ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    • CategoryInfo : NotSpecified: (:) [Remove-AzureADServicePrincipal], ApiException
    • FullyQualifiedErrorId : Microsoft.Open.AzureAD16.Client.ApiException,Microsoft.Open.AzureAD16.PowerShell.RemoveServicePrincipal

    Remove-AzureADServicePrincipal : Error occurred while executing RemoveServicePrincipal
    Code: Request_BadRequest
    Message: Specified App Principal ID is Microsoft Internal.
    RequestId: 7e4bdc8c-653d-4b41-8758-28d575fbbee1
    DateTimeStamp: Wed, 03 Nov 2021 09:33:02 GMT
    HttpStatusCode: BadRequest
    HttpStatusDescription: Bad Request
    HttpResponseStatus: Completed
    Au caractère Ligne:5 : 1

    • Remove-AzureADServicePrincipal -objectid $ObjectId
    • ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    • CategoryInfo : NotSpecified: (:) [Remove-AzureADServicePrincipal], ApiException
    • FullyQualifiedErrorId : Microsoft.Open.AzureAD16.Client.ApiException,Microsoft.Open.AzureAD16.PowerShell.RemoveServicePrincipal

    Remove-AzureADServicePrincipal : Error occurred while executing RemoveServicePrincipal
    Code: Request_BadRequest
    Message: Specified App Principal ID is Microsoft Internal.
    RequestId: 3c7cded9-f21f-4b84-ae67-f0afedd77a9f
    DateTimeStamp: Wed, 03 Nov 2021 09:33:05 GMT
    HttpStatusCode: BadRequest
    HttpStatusDescription: Bad Request
    HttpResponseStatus: Completed
    Au caractère Ligne:5 : 1

    • Remove-AzureADServicePrincipal -objectid $ObjectId
    • ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    • CategoryInfo : NotSpecified: (:) [Remove-AzureADServicePrincipal], ApiException
    • FullyQualifiedErrorId : Microsoft.Open.AzureAD16.Client.ApiException,Microsoft.Open.AzureAD16.PowerShell.RemoveServicePrincipal

    Remove-AzureADServicePrincipal : Error occurred while executing RemoveServicePrincipal
    Code: Request_BadRequest
    Message: Specified App Principal ID is Microsoft Internal.
    RequestId: c895565c-ecfe-4a1d-acdd-f81faf8ac4fa
    DateTimeStamp: Wed, 03 Nov 2021 09:33:08 GMT
    HttpStatusCode: BadRequest
    HttpStatusDescription: Bad Request
    HttpResponseStatus: Completed
    Au caractère Ligne:5 : 1

    • Remove-AzureADServicePrincipal -objectid $ObjectId
    • ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    • CategoryInfo : NotSpecified: (:) [Remove-AzureADServicePrincipal], ApiException
    • FullyQualifiedErrorId : Microsoft.Open.AzureAD16.Client.ApiException,Microsoft.Open.AzureAD16.PowerShell.RemoveServicePrincipal

    Remove-AzureADServicePrincipal : Error occurred while executing RemoveServicePrincipal
    Code: Request_BadRequest
    Message: Specified App Principal ID is Microsoft Internal.
    RequestId: 150a9361-ba5d-4427-89a2-b17816c88a7a
    DateTimeStamp: Wed, 03 Nov 2021 09:33:09 GMT
    HttpStatusCode: BadRequest
    HttpStatusDescription: Bad Request
    HttpResponseStatus: Completed
    Au caractère Ligne:5 : 1

    • Remove-AzureADServicePrincipal -objectid $ObjectId
    • ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    • CategoryInfo : NotSpecified: (:) [Remove-AzureADServicePrincipal], ApiException
    • FullyQualifiedErrorId : Microsoft.Open.AzureAD16.Client.ApiException,Microsoft.Open.AzureAD16.PowerShell.RemoveServicePrincipal

    Thanks

    0 comments No comments

  3. Siva-kumar-selvaraj 15,556 Reputation points
    2021-11-03T11:28:59.057+00:00

    Hello @Sébastien GENESTA ,

    Thanks for sharing out come of PowerShell.

    Could you please run following cmdlet and share the outcome ? Get-AzureADServicePrincipal |select ObjectId, AppId, DisplayName, AccountEnabled also there is Microsoft 1st Party Service Principals known to prevent tenant deletion so I would request you to check if below application present in your tenant if so then try to disable and then delete app.

    DisplayName : Microsoft Partner
    Application ID : 4990cffe-04e8-4e8b-808a-1175604b879f

    Disable **
    1.) Browse to AAD -> Enterprise Apps blade again
    2.) Change application type filter dropdown to = All Applications
    3.) Change application status filter dropdown to = Any
    4.) Hit Apply and Use the Searchbox and paste **4990cffe-04e8-4e8b-808a-1175604b879f

    5.) Hit enter to search and Open the returned application -> Choose properties tab
    6.) Change the "Enabled for users to sign-in" option from Yes to No

    146175-image.png

    Delete App:

    Run this cmdlet to delete Microsoft Partner app Remove-AzureADServicePrincipal -ObjectId c589de37-c1aa-4e54-a3ca-e9cd5cd6d01e

    Once successfully deleted then try to delete tenant again.

    Hope this helps.


    Please "Accept the answer" if the information helped you. This will help us and others in the community as well.

    0 comments No comments

  4. Sébastien GENESTA 26 Reputation points
    2021-11-03T16:17:50.397+00:00

    Hi,

    Thanks again for your answer!

    Below "Get-AzureADServicePrincipal |select ObjectId, AppId, DisplayName, AccountEnabled" result:

    ObjectId : 12648fbe-4e2f-4d95-9768-3fe745e4bb43
    AppId : 6ea8091b-151d-447a-9013-6845b83ba57b
    DisplayName : AD Hybrid Health
    AccountEnabled : true

    ObjectId : 1335a41c-98e7-4632-8b42-786568d8c27b
    AppId : bb2a2e3a-c5e7-4f0a-88e0-8e01fd3fc1f4
    DisplayName : CPIM Service
    AccountEnabled : true

    ObjectId : 1a115ef5-7a60-4f54-83bc-9de5ce9dd23a
    AppId : aa9ecb1e-fd53-4aaa-a8fe-7a54de2c1334
    DisplayName : Office 365 Configure
    AccountEnabled : true

    ObjectId : 325daa82-0c39-4da9-9069-6d85a1ee1f55
    AppId : a57aca87-cbc0-4f3c-8b9e-dc095fdc8978
    DisplayName : IAM Supportability
    AccountEnabled : true

    ObjectId : 3a15ad2a-29c4-48bc-a03d-fa2cd4ba3d16
    AppId : c728155f-7b2a-4502-a08b-b8af9b269319
    DisplayName : AAD Request Verification Service - PROD
    AccountEnabled : true

    ObjectId : 3b915e3e-9a54-44ac-9f85-e363fc9e29fd
    AppId : 224a7b82-46c9-4d6b-8db0-7360fb444681
    DisplayName : Microsoft Modern Contact Master
    AccountEnabled : true

    ObjectId : 424514ba-8c95-4829-ab4d-4bd618e65582
    AppId : 959678cf-d004-4c22-82a6-d2ce549a58b8
    DisplayName : Microsoft_Azure_Support
    AccountEnabled : true

    ObjectId : 44fbd86e-e3d2-4d90-8993-0cd6b1d762e1
    AppId : d8c767ef-3e9a-48c4-aef9-562696539b39
    DisplayName : Request Approvals Read Platform
    AccountEnabled : true

    ObjectId : 4a4cdb77-c33f-412e-a83d-f319acc3b7ee
    AppId : 00000001-0000-0000-c000-000000000000
    DisplayName : Azure ESTS Service
    AccountEnabled : true

    ObjectId : 4ccf591e-82cc-4aa7-83be-39754a0b123e
    AppId : 15689b28-1333-4213-bb64-38407dde8a5e
    DisplayName : Microsoft Azure
    AccountEnabled : true

    ObjectId : 59e92944-d4a6-4d06-bf05-51780f8b6194
    AppId : 0bf30f3b-4a52-48df-9a82-234910c4a086
    DisplayName : Microsoft Graph Change Tracking
    AccountEnabled : true

    ObjectId : 5a3467bb-fe25-4161-b974-97b31d157ed1
    AppId : c44b4083-3bb0-49c1-b47d-974e53cbdf3c
    DisplayName : Azure Portal
    AccountEnabled : true

    ObjectId : 65cc4331-3d55-4430-8a27-97caab493ed9
    AppId : fc03f97a-9db0-4627-a216-ec98ce54e018
    DisplayName : Azure AD Notification
    AccountEnabled : true

    ObjectId : 7223b091-f48e-4d3f-9d2b-a1a15a76d9b7
    AppId : 8e0e8db5-b713-4e91-98e6-470fed0aa4c2
    DisplayName : Microsoft Azure Signup Portal
    AccountEnabled : true

    ObjectId : 773aeb64-32c6-46ab-9481-806edbd14ebe
    AppId : b4bddae8-ab25-483e-8670-df09b9f1d0ea
    DisplayName : Signup
    AccountEnabled : true

    ObjectId : 7c467c25-791e-4a15-8a40-7647cafd0779
    AppId : 3c31d730-a768-4286-a972-43e9b83601cd
    DisplayName : Demeter.WorkerRole
    AccountEnabled : true

    ObjectId : 7cca97ca-6183-4f71-8000-511d0b943240
    AppId : 4bfd5d66-9285-44a1-bb14-14953e8cdf5e
    DisplayName : Audit GraphAPI Application
    AccountEnabled : true

    ObjectId : 7d4854ca-5621-41db-b967-5e73e623f1e9
    AppId : feff8b5b-97f3-4374-a16a-1911ae9e15e9
    DisplayName : Cloud Hybrid Search
    AccountEnabled : true

    ObjectId : 7de63211-374e-4537-ad45-5c58f017b3eb
    AppId : 58ea322b-940c-4d98-affb-345ec4cccb92
    DisplayName : M365 Pillar Diagnostics Service
    AccountEnabled : true

    ObjectId : 7e81b959-95f9-4ac1-9e04-300b2d71065e
    AppId : 23c898c1-f7e8-41da-9501-f16571f8d097
    DisplayName : OCPS Checkin Service
    AccountEnabled : false

    ObjectId : 7f65018e-6e9d-4c93-a8d0-9b25bd73009c
    AppId : 475226c6-020e-4fb2-8a90-7a972cbfc1d4
    DisplayName : PowerApps Service
    AccountEnabled : true

    ObjectId : 7fb7246a-fd8d-4c27-b48d-ba4990e410ae
    AppId : 18a4ad1e-427c-4cad-8416-ef674e801d32
    DisplayName : Intune DeviceActionService
    AccountEnabled : true

    ObjectId : 800e2fa0-154b-4b0e-bc4d-ab8de4198c1d
    AppId : b55b276d-2b09-4ad2-8de5-f09cf24ffba9
    DisplayName : Microsoft Teams Templates Service
    AccountEnabled : true

    ObjectId : 815302c6-e5d3-4f98-94ce-10c9bad2cb73
    AppId : b6b84568-6c01-4981-a80f-09da9a20bbed
    DisplayName : Microsoft Invoicing
    AccountEnabled : false

    ObjectId : 82989207-965d-4d08-ac0b-8df10257357e
    AppId : 1f5530b3-261a-47a9-b357-ded261e17918
    DisplayName : Azure Multi-Factor Auth Connector
    AccountEnabled : true

    ObjectId : 82ebdee2-a670-40b4-a1a0-58161a6000b6
    AppId : 5b20c633-9a48-4a5f-95f6-dae91879051f
    DisplayName : Azure Information Protection
    AccountEnabled : false

    ObjectId : 83bbc013-4ea2-45d2-b64a-1727802fa684
    AppId : 04436913-cf0d-4d2a-9cc6-2ffe7f1d3d1c
    DisplayName : Windows Notification Service
    AccountEnabled : true

    ObjectId : 83c7323b-f962-4a68-8928-7f11186296df
    AppId : f5aeb603-2a64-4f37-b9a8-b544f3542865
    DisplayName : Microsoft Teams RetentionHook Service
    AccountEnabled : false

    ObjectId : 83eebeed-7210-41d4-acd3-8d90dab9b153
    AppId : 00695ed2-3202-4156-8da1-69f60065e255
    DisplayName : Microsoft Visio Data Visualizer
    AccountEnabled : true

    ObjectId : 84380ced-5b6e-4631-9b3e-9bd6a9d1f5b8
    AppId : de096ee1-dae7-4ee1-8dd5-d88ccc473815
    DisplayName : MileIQ Admin Center
    AccountEnabled : true

    ObjectId : 84684f59-37c4-4938-8c58-0678ea5536d1
    AppId : 0000000c-0000-0000-c000-000000000000
    DisplayName : Microsoft App Access Panel
    AccountEnabled : true

    ObjectId : 84c7431f-5e34-4b07-adb8-e15408b7df34
    AppId : 7f0d9978-eb2a-4974-88bd-f22a3006fe17
    DisplayName : Intune DiagnosticService
    AccountEnabled : false

    ObjectId : 84d581d3-deab-4299-b73f-ca34222ef116
    AppId : 61a63147-3824-45f5-a186-ace3f4c9daeb
    DisplayName : MsgDataMgmt
    AccountEnabled : true

    ObjectId : 84f061df-4a93-4b77-a6b7-d240470a74eb
    AppId : 557c67cf-c916-4293-8373-d584996f60ae
    DisplayName : Configuration Manager Microservice
    AccountEnabled : true

    ObjectId : 85373815-619e-4072-bea8-9f0c21e1ef01
    AppId : 88c57617-94ff-4043-a396-8a85a8d38922
    DisplayName : Business Central to Common Data Service
    AccountEnabled : true

    ObjectId : 853ebff0-8886-4948-a1f0-3b3ca844f0ba
    AppId : c39c9bac-9d1f-4dfb-aa29-27f6365e5cb7
    DisplayName : Azure Advisor
    AccountEnabled : true

    ObjectId : 85a38b7c-b2b1-4756-9c44-9e155f448fee
    AppId : f25a7567-8ec5-4582-8a65-bfd66b0530cc
    DisplayName : ReportReplica
    AccountEnabled : true

    ObjectId : 85c110df-b94b-42b2-bb31-6aa71d152e96
    AppId : db7de2b5-2149-435e-8043-e080dd50afae
    DisplayName : Skype for Business Voicemail
    AccountEnabled : true

    ObjectId : 85d4e279-3a99-4728-b563-1ddf8fd1f1d7
    AppId : 31ba6d5c-2e14-40fb-bbcb-27dc8a1bfaf5
    DisplayName : TeamsLinkedInLiveApp
    AccountEnabled : false

    ObjectId : 87c3c350-b246-4cf4-9d99-fbd77e13b093
    AppId : e95d8bee-4725-4f59-910d-94d415da51b9
    DisplayName : Skype for Business Name Dictionary Service
    AccountEnabled : false

    ObjectId : 88feac88-96c7-4beb-a60e-31adf2b6cec5
    AppId : 8fca0a66-c008-4564-a876-ab3ae0fd5cff
    DisplayName : Microsoft.SMIT
    AccountEnabled : true

    ObjectId : 891da2a1-d2f6-4513-af34-d5c8150c071b
    AppId : 9cd0f7df-8b1a-4e54-8c0c-0ef3a51116f6
    DisplayName : DirectoryLookupService
    AccountEnabled : true

    ObjectId : 8afbd4d0-9f9c-48d6-b57d-c507f96ede0a
    AppId : b1379a75-ce5e-4fa3-80c6-89bb39bf646c
    DisplayName : Microsoft Teams Chat Aggregator
    AccountEnabled : true

    ObjectId : 8b44640a-cd67-4e94-808c-3a083af0f981
    AppId : b692184e-b47f-4706-b352-84b288d2d9ee
    DisplayName : Microsoft.MileIQ.RESTService
    AccountEnabled : false

    ObjectId : 8bd7b2ca-9ad0-4f22-9ae9-1f2227ecf6f8
    AppId : a0be0c72-870e-46f0-9c49-c98333a996f7
    DisplayName : AzureDnsFrontendApp
    AccountEnabled : true

    ObjectId : 8cd281ac-31ba-4032-8ac2-6ae90ba55034
    AppId : 71234da4-b92f-429d-b8ec-6e62652e50d7
    DisplayName : Microsoft Customer Engagement Portal
    AccountEnabled : false

    ObjectId : 8dfe5b58-b3f2-44f3-af7c-47c5941313c2
    AppId : 87223343-80b1-4097-be13-2332ffa1d666
    DisplayName : Outlook Web App Widgets
    AccountEnabled : true

    ObjectId : 8e33156a-d144-4823-83bc-867adf099538
    AppId : 3cf798a6-b0c5-4d5c-9645-b5273d471fc5
    DisplayName : teamsupgradeorchestrator-app
    AccountEnabled : true

    ObjectId : 8f051791-7b06-40c8-9d3c-56c8f72c1e5e
    AppId : 55441455-2f54-42b5-bc99-93e21cd4ae28
    DisplayName : Office Enterprise Protection Service
    AccountEnabled : true

    ObjectId : 8f9b917b-efb9-42fd-bd25-9b9fe0d9048a
    AppId : c830ddb0-63e6-4f22-bd71-2ad47198a23e
    DisplayName : Microsoft To-Do
    AccountEnabled : true

    ObjectId : 90843fba-b3fa-4f18-b183-11edb4692212
    AppId : 4e445925-163e-42ca-b801-9073bfa46d17
    DisplayName : SharePoint Home Notifier
    AccountEnabled : false

    ObjectId : 90ce4438-1d44-4c57-bcc5-bf7c496a2055
    AppId : 51133ff5-8e0d-4078-bcca-84fb7f905b64
    DisplayName : Microsoft Teams Mailhook
    AccountEnabled : false

    ObjectId : 90fa1017-ad7a-4281-bcf2-6bff05cf5f66
    AppId : 1e2ca66a-c176-45ea-a877-e87f7231e0ee
    DisplayName : Microsoft B2B Admin Worker
    AccountEnabled : true

    ObjectId : 915dfdd7-8ef3-4029-a309-fbbd1739c6f1
    AppId : 3184af01-7a88-49e0-8b55-8ecdce0aa950
    DisplayName : Azure Cost Management XCloud
    AccountEnabled : true

    ObjectId : 918fd065-a092-41a9-b8e2-2a0ae967c8fb
    AppId : d5097d05-956f-4ae2-b6a2-eff25f5689b3
    DisplayName : Windows Update for Business Cloud Extensions PowerShell
    AccountEnabled : false

    ObjectId : 91ecaa2d-a681-468a-9786-3d8bd56a8acc
    AppId : bf7b96b3-68e4-4fd9-b697-637f0f1e778c
    DisplayName : Universal Store Entitlements Service
    AccountEnabled : true

    ObjectId : 92843d13-7a0a-41f0-8680-6186a6680db4
    AppId : 00000012-0000-0000-c000-000000000000
    DisplayName : Microsoft Rights Management Services
    AccountEnabled : false

    ObjectId : 92c6471d-ef7e-4122-a30b-afed14628316
    AppId : 8d3a7d3c-c034-4f19-a2ef-8412952a9671
    DisplayName : Microsoft Office Licensing Service
    AccountEnabled : false

    ObjectId : 932c464a-8267-4bdc-8468-0cf4ca96d781
    AppId : 00000014-0000-0000-c000-000000000000
    DisplayName : Microsoft.Azure.SyncFabric
    AccountEnabled : true

    ObjectId : 94a646ce-269d-484b-83c0-92e6b295e2ae
    AppId : 637fcc9f-4a9b-4aaa-8713-a2a3cfda1505
    DisplayName : Dynamics CRM Online Administration
    AccountEnabled : true

    ObjectId : 94c5f01a-95f7-4507-8386-4175112c5495
    AppId : 4cba1704-a0c1-45ee-9d41-fe75b4ef9190
    DisplayName : TeamsChatServiceApp
    AccountEnabled : true

    ObjectId : 95b31c28-29ce-4f92-b6c9-64c9f75cfe1c
    AppId : c161e42e-d4df-4a3d-9b42-e7a3c31f59d4
    DisplayName : Microsoft Intune API
    AccountEnabled : false

    ObjectId : 971866a5-c8b9-410b-88fc-f724088542bc
    AppId : d82073ec-4d7c-4851-9c5d-5d97a911d71d
    DisplayName : Kaizala Sync Service
    AccountEnabled : false

    ObjectId : 99536fb5-fba3-4406-9dc4-f076333b8719
    AppId : f18b59c9-5926-4a65-8605-c23ec8c7e074
    DisplayName : console-m365d
    AccountEnabled : true

    ObjectId : 998fcac1-1018-4773-b6db-b0814db897c6
    AppId : eaf8a961-f56e-47eb-9ffd-936e22a554ef
    DisplayName : DevilFish
    AccountEnabled : true

    ObjectId : 999e0b9b-d9f9-441d-bfcf-d603066b5f65
    AppId : 9bb724a5-4639-438c-969b-e184b2b1e264
    DisplayName : KaizalaActionsPlatform
    AccountEnabled : true

    ObjectId : 9a55cfd9-046f-4cea-b27e-cc7e07faefb0
    AppId : 48ac35b8-9aa8-4d74-927d-1f4a14a0b239
    DisplayName : Skype and Teams Tenant Admin API
    AccountEnabled : true

    ObjectId : 9b06d7fd-f603-4e51-b452-e53c84339dc2
    AppId : 63e61dc2-f593-4a6f-92b9-92e4d2c03d4f
    DisplayName : Microsoft Intune SCCM Connector
    AccountEnabled : true

    ObjectId : 9b557ef0-7b7d-4c25-984b-d708ac8f8114
    AppId : fbb0ac1a-82dd-478b-a0e5-0b2b98ef38fe
    DisplayName : Substrate-FileWatcher
    AccountEnabled : true

    ObjectId : 9b708ece-b3a8-4304-9ebe-82fec57a3fa7
    AppId : 7e468355-e4db-46a9-8289-8d414c89c43c
    DisplayName : Federated Profile Service
    AccountEnabled : true

    ObjectId : 9d759333-6c80-4aef-b211-3f2b41766e5d
    AppId : aeb86249-8ea3-49e2-900b-54cc8e308f85
    DisplayName : M365 License Manager
    AccountEnabled : true

    ObjectId : 9d9754d7-45ab-461a-953d-d25f97a24517
    AppId : 98c8388a-4e86-424f-a176-d1288462816f
    DisplayName : Recommended
    AccountEnabled : false

    ObjectId : 9da38bc0-65a9-49b0-8fd1-c962be9a9f82
    AppId : 47ee738b-3f1a-4fc7-ab11-37e4822b007e
    DisplayName : Azure AD Application Proxy
    AccountEnabled : true

    ObjectId : 9ebd9bbd-76e0-47d1-9598-e27b900f2295
    AppId : 944861d3-5975-4f8b-afd4-3422c0b1b6ce
    DisplayName : Customer Service Trial PVA
    AccountEnabled : true

    ObjectId : 9efc24b5-2083-447d-b81f-6f11882344f5
    AppId : 00000006-0000-0ff1-ce00-000000000000
    DisplayName : Microsoft Office 365 Portal
    AccountEnabled : true

    ObjectId : 9f4a329a-20ab-49b3-b471-04f61a08da0f
    AppId : 1e3e4475-288f-4018-a376-df66fd7fac5f
    DisplayName : NetworkTrafficAnalyticsService
    AccountEnabled : true

    ObjectId : 9f76d6f9-544c-4503-b53b-c7d08a748b7e
    AppId : 996def3d-b36c-4153-8607-a6fd3c01b89f
    DisplayName : Dynamics 365 Business Central
    AccountEnabled : false

    ObjectId : 9fb9a5de-ff1f-4fca-88ed-80362925bd5e
    AppId : 94c63fef-13a3-47bc-8074-75af8c65887a
    DisplayName : Office Delve
    AccountEnabled : true

    ObjectId : a06a8cb8-7cf8-4715-86aa-c3f64168b061
    AppId : ec245c98-4a90-40c2-955a-88b727d97151
    DisplayName : Azure AD Identity Governance - Directory Management
    AccountEnabled : true

    ObjectId : a1548678-5b80-4993-8450-036efbc205c0
    AppId : 9ea1ad79-fdb6-4f9a-8bc3-2b70f96e34c7
    DisplayName : Bing
    AccountEnabled : true

    ObjectId : a1ecec62-fa8b-4d5e-af68-e0e07df62f60
    AppId : d87dcbc6-a371-462e-88e3-28ad15ec4e64
    DisplayName : Domain Controller Services
    AccountEnabled : true

    ObjectId : a27d46b1-d804-4e66-8103-d9fd41b5cebe
    AppId : cdccd920-384b-4a25-897d-75161a4b74c1
    DisplayName : Skype Teams Firehose
    AccountEnabled : false

    ObjectId : a32c881e-ee28-4bd6-84e5-e57b91914ab5
    AppId : 9e4a5442-a5c9-4f6f-b03f-5b9fcaaf24b1
    DisplayName : OfficeServicesManager
    AccountEnabled : true

    ObjectId : a393e8bd-17bd-494d-a4f7-367bb76b5253
    AppId : eacba838-453c-4d3e-8c6a-eb815d3469a3
    DisplayName : Microsoft Flow CDS Integration Service TIP1
    AccountEnabled : false

    ObjectId : a4479b96-fbbe-454c-9274-43dfd4329118
    AppId : 8c8fbf21-0ef3-4f60-81cf-0df811ff5d16
    DisplayName : Power Query Online GCC-L5
    AccountEnabled : true

    ObjectId : a4b251e6-25c7-446b-908b-b0c9aceaecad
    AppId : 62fd1447-0ef3-4ab7-a956-7dd05232ecc1
    DisplayName : Office Scripts Service
    AccountEnabled : false

    ObjectId : a5375aba-1593-4bf7-95ff-a5ec297dff76
    AppId : 01cb2876-7ebd-4aa4-9cc9-d28bd4d359a9
    DisplayName : Device Registration Service
    AccountEnabled : true

    ObjectId : a69337e7-f926-49fd-b260-b2492e1871d8
    AppId : 33be1cef-03fb-444b-8fd3-08ca1b4d803f
    DisplayName : OneDrive Web
    AccountEnabled : false

    ObjectId : a78bf50a-fbb6-4231-95de-b067b48044b2
    AppId : 39e6ea5b-4aa4-4df2-808b-b6b5fb8ada6f
    DisplayName : Dynamics Provision
    AccountEnabled : true

    ObjectId : a8ae57ba-4c98-4bc0-9f95-76d3abab4e23
    AppId : 2f5afa01-cdcb-4707-a62a-0803cc994c60
    DisplayName : MS-CE-CXG-MAC-AadShadowRoleWriter
    AccountEnabled : true

    ObjectId : a9b27e34-bede-428d-ac15-5531ae22900b
    AppId : e1335bb1-2aec-4f92-8140-0e6e61ae77e5
    DisplayName : CIWebService
    AccountEnabled : true

    ObjectId : aaf9d734-7070-4514-a088-93fe09d8d790
    AppId : 6da466b6-1d13-4a2c-97bd-51a99e8d4d74
    DisplayName : Exchange Office Graph Client for AAD - Interactive
    AccountEnabled : true

    ObjectId : abc02cdd-e569-4c46-a6dc-5d4e56d725ab
    AppId : 0469d4cd-df37-4d93-8a61-f8c75b809164
    DisplayName : Policy Administration Service
    AccountEnabled : true

    ObjectId : abfd5fac-f495-4010-9b61-7423b45c1b39
    AppId : 48af08dc-f6d2-435f-b2a7-069abd99c086
    DisplayName : Connectors
    AccountEnabled : true

    ObjectId : ac6bfe2c-c804-4557-82a2-fa4d1cfceaff
    AppId : 4747d38e-36c5-4bc3-979b-b0ef74df54d1
    DisplayName : PushChannel
    AccountEnabled : false

    ObjectId : acbdac0d-b38a-4a2f-8dd8-b5131d0a493b
    AppId : fc780465-2017-40d4-a0c5-307022471b92
    DisplayName : WindowsDefenderATP
    AccountEnabled : true

    ObjectId : acda6dec-ff3c-4cf3-a860-7a4dde952c75
    AppId : d29a4c00-4966-492a-84dd-47e779578fb7
    DisplayName : Discovery Service
    AccountEnabled : true

    ObjectId : af4c7310-0e88-458b-9621-0a1856c0c8b1
    AppId : 9d06afd9-66c9-49a6-b385-ea7509332b0b
    DisplayName : O365SBRM Service
    AccountEnabled : false

    ObjectId : af955f1d-6769-4b3c-975f-360471631bf1
    AppId : 2b5e68f0-bdc2-45b0-920a-217d5cbbd505
    DisplayName : Power Platform Governance Services - TIRPS
    AccountEnabled : true

    ObjectId : b04a00d6-b6c2-4d71-adc7-37c97aa70d99
    AppId : f7a2a81e-ab33-4560-a3dd-6ddca3c5ec6d
    DisplayName : Membership View Service
    AccountEnabled : true

    We've also followed the disable process but the error still pending

    146283-sans-titre1.png

    Thanks again