Uninstall the Microsoft 365 Copilot for Sales app

You can uninstall the Copilot for Sales app from your organization or for individual users. The steps to uninstall the app depend on whether you are an admin or a user.

Uninstall as a user

You can uninstall the Copilot for Sales app from either Microsoft Outlook or Microsoft Teams. Uninstalling the app from one location uninstalls it from all locations.

  1. Sign in to Microsoft Outlook or Microsoft Teams.

  2. In the navigation bar on the left, right-click the Copilot for Sales app, and then select Uninstall.

    Note

    If there's no option to uninstall the app, it's likely that the app was installed by your administrator.

Uninstall as an admin

As as admin, you can uninstall the Copilot for Sales add-in for Outlook using the Microsoft 365 admin center or PowerShell.

For the Copilot for Sales app in Teams, you can either remove the remove the group policy assignment or block the app if your sellers no longer need it.

Uninstall Copilot for Sales Outlook add-in using Microsoft 365 admin center

If you've installed the Copilot for Sales add-in for Outlook from the Microsoft 365 admin center, it is considered as admin-deployed. You can remove the Copilot for Sales add-in if your sellers no longer need it.

  1. In the Microsoft 365 admin center, go to Settings > Integrated apps.
  2. Select Copilot for Sales and then select the Configuration tab.
  3. Select the app to be removed and then select Remove.
  4. Confirm about your choice and then select Remove.
  5. When the app is successfully removed, select Done.

Uninstall Copilot for Sales Outlook add-in using PowerShell

If the Copilot for Sales add-in for Outlook was installed automatically for your organization or sellers have installed it themselves, you can use PowerShell to remove it.

Note

  • You must be a tenant administrator to run PowerShell scripts.
  • PowerShell scripts can only be used to uninstall user-deployed add-ins. If you run these scripts to uninstall admin-deployed add-ins, an error message is displayed.
  • To remove the older Sales Copilot add-in, use the app ID c3b456a3-a41a-4ed4-8040-354f73574021. If the older add-in is not found, it might have been updated to the enhanced Teams app. In that case, use the app ID c92c289e-ceb4-4755-819d-0d1dffdab6fa.

Uninstall for individual user

Install-Module -Name ExchangeOnlineManagement
Import-Module ExchangeOnlineManagement

# Copilot for Sales app id
$appIdentity = "c3b456a3-a41a-4ed4-8040-354f73574021"

Connect-ExchangeOnline -UserPrincipalName <tenant admin email>

Remove-App -Mailbox <user alias to delete from> -Identity $appIdentity -Confirm:$false

Uninstall for all users

Install-Module -Name ExchangeOnlineManagement
Import-Module ExchangeOnlineManagement

# Copilot for Sales app id
$appIdentity = "c3b456a3-a41a-4ed4-8040-354f73574021"

Connect-ExchangeOnline -UserPrincipalName <tenant admin email>

Get-Mailbox -ResultSize Unlimited -Filter {RecipientTypeDetails -eq "UserMailbox"} | ForEach-Object { Remove-App -Mailbox $_.Identity -Identity $appIdentity -Confirm:$false }

Uninstall Copilot for Sales app from Microsoft Teams

You can't delete or uninstall the Copilot for Sales app in Teams. You can either remove the group policy assignment, block the app, or change the app's availability if your sellers no longer need it.

Remove the group policy assignment

  1. Sign in to the Teams admin center.
  2. In the left pane, select Teams apps > Setup policies.
  3. On the Group policy assignment tab, select the group policy assignment that includes the Copilot for Sales app.
  4. Select Remove.
  5. Select Confirm.

Block the app

  1. Sign in to the Teams admin center.
  2. In the left pane, go to Teams apps > Manage apps.
  3. Select the app to open its details.
  4. Select Actions at the top-right, and then select Block app.

Change the app's availability

  1. Sign in to the Teams admin center.
  2. In the left pane, go to Teams apps > Manage apps.
  3. Select the check mark to the left of Copilot for Sales in the app list, and then select Edit availability.
  4. In the Edit availability pane, select No one from the Available to list.