From the Microsoft 365 Admin Center
- Access the Admin Center: Sign in to the Microsoft 365 admin center.
- Go to Integrated Add-ins: Navigate to Settings > Integrated Apps.
- Select the Add-in: Choose the add-in you want to remove and click Settings.
- Remove the Add-in: In Settings, go to Advanced > Add-ins, then select the add-in.
- Click Remove Add-in and follow the on-screen instructions.
Important: This deployment across all mailboxes in the organization may take a few days to complete.
Using PowerShell
This is done using PowerShell commands by an administrator with the appropriate permissions in Exchange Online.
First, you need to obtain the App ID by running the following command. The value will be shown under AppId:
Get-App | Select-Object DisplayName, AppId, Enabled
Once you have the App ID, use it in the following command to uninstall the add-in, replacing "App ID" with the actual value obtained from the previous command:
Remove-App -Identity "ID de aplicación" -OrganizationApp -Confirm:$false
Example:
Remove-App -Identity "12345678-1234-5678-90ab-cdef12345678" -OrganizationApp -Confirm:$false
Important: This deployment across all mailboxes in the organization may take a few days to complete.