Microsoft 365 Copilot License Removal Does Not Remove Copilot Chat: Fix
🔍 WiseChecker

Microsoft 365 Copilot License Removal Does Not Remove Copilot Chat: Fix

After removing a Microsoft 365 Copilot license from a user, you expect the Copilot icon and chat pane to disappear from Microsoft 365 apps. Instead, the Copilot Chat button remains visible and functional in apps like Teams, Word, and Outlook. This happens because the Copilot Chat feature is enabled by a separate tenant-level setting that is not automatically disabled when you remove individual user licenses. This article explains why the license removal does not remove the chat interface and provides the exact steps to disable Copilot Chat for your users.

Key Takeaways: Fixing Copilot Chat Persisting After License Removal

  • Microsoft 365 admin center > Settings > Org settings > Copilot: Controls the tenant-wide Copilot Chat toggle that must be turned off to hide the chat interface.
  • PowerShell cmdlet Set-CsTeamsClientConfiguration -EnableCopilot: Directly disables Copilot Chat in Microsoft Teams without affecting other apps.
  • Group Policy or Intune policy for Office apps: Disables Copilot Chat in Word, Excel, PowerPoint, and Outlook by setting the registry key or policy to zero.

ADVERTISEMENT

Why Copilot Chat Persists After License Removal

When you remove a Microsoft 365 Copilot license from a user, the user loses access to premium Copilot features such as grounded responses, file summarization, and meeting recaps. However, the basic Copilot Chat interface is governed by a separate tenant-level toggle. This toggle is enabled by default when you first activate Copilot for your organization. Removing individual licenses does not flip this tenant switch back to off. The chat pane remains visible because the app detects the tenant setting, not the user license, for the presence of the chat button.

Microsoft designed this behavior intentionally. The Copilot Chat pane is considered a lightweight entry point that can be used with a free Microsoft account or a paid license. For enterprise tenants, the toggle allows admins to control whether the chat interface appears at all, independent of licensing. If you want to remove the chat button entirely, you must modify the tenant-level setting or apply a client-side policy.

The Technical Root Cause

The Microsoft 365 Copilot license is a service plan assigned to a user in Azure Active Directory. The Copilot Chat toggle is a tenant configuration stored in the Microsoft 365 admin center and replicated to client apps via the Microsoft 365 roadmap and service updates. When a user launches an app, the app queries the tenant configuration for the chat toggle. If the toggle is on, the app displays the chat button. The app does not check the user’s license at that point. Therefore, removing the license does not remove the button.

Steps to Disable Copilot Chat After License Removal

You have three methods to disable Copilot Chat. Use the first method to remove the chat for all apps. Use the second method if you only need to disable it in Teams. Use the third method for granular control via group policy or mobile device management.

Method 1: Turn Off Copilot Chat in the Microsoft 365 Admin Center

This method disables the chat pane across all Microsoft 365 apps for every user in the tenant.

  1. Sign in to the Microsoft 365 admin center
    Go to https://admin.microsoft.com and sign in as a Global Administrator or a user with the Copilot admin role.
  2. Navigate to Org settings
    In the left navigation, select Settings then Org settings.
  3. Open the Copilot settings page
    Scroll down or use the search bar to find Copilot. Click on it to open the settings panel.
  4. Turn off the Copilot Chat toggle
    Find the toggle labeled Allow users to access Copilot Chat. Set it to Off.
  5. Save the change
    Click Save. The change may take up to 24 hours to propagate to all client apps. To speed this up, ask users to sign out of all Microsoft 365 apps and sign back in.

Method 2: Disable Copilot Chat in Microsoft Teams Using PowerShell

Use this method if you want to disable Copilot Chat only in Teams while leaving it available in other apps. You need the Teams PowerShell module installed.

  1. Open PowerShell as an administrator
    Press the Windows key, type PowerShell, right-click Windows PowerShell, and select Run as administrator.
  2. Connect to Teams
    Run Connect-MicrosoftTeams and sign in with a Teams administrator account.
  3. Check the current Copilot setting
    Run Get-CsTeamsClientConfiguration | fl EnableCopilot to see the current value. A value of True means Copilot Chat is enabled in Teams.
  4. Disable Copilot Chat
    Run Set-CsTeamsClientConfiguration -EnableCopilot $false.
  5. Verify the change
    Run Get-CsTeamsClientConfiguration | fl EnableCopilot again to confirm it now shows False.

Method 3: Disable Copilot Chat via Group Policy or Intune

Use this method for fine-grained control over which users or devices see Copilot Chat. This method works for Word, Excel, PowerPoint, and Outlook.

  1. Download the latest Microsoft 365 administrative templates
    Go to the Microsoft Download Center and download the Microsoft 365 Apps for enterprise Administrative Templates.
  2. Open the Group Policy Management Console
    On a domain controller or a management workstation, open Group Policy Management. Create or edit a Group Policy Object that applies to the target users or computers.
  3. Navigate to the Copilot policy setting
    Go to Computer Configuration > Administrative Templates > Microsoft Office 2016 > Miscellaneous. Look for the policy named Turn off Copilot.
  4. Enable the policy
    Set the policy to Enabled. This disables the Copilot Chat pane in all Office apps.
  5. Apply the policy
    Run gpupdate /force on the target machines or wait for the next Group Policy refresh cycle.

For Intune-managed devices, create a configuration profile using the same administrative template. Assign the profile to the appropriate device groups.

ADVERTISEMENT

If Copilot Chat Still Appears After Disabling It

Copilot Chat Button Remains in Teams After Disabling the Tenant Toggle

Teams caches the Copilot configuration for up to 24 hours. Users must sign out of Teams completely and sign back in. To force a refresh, close Teams, delete the cached files in %appdata%\Microsoft\Teams, and restart the app.

Copilot Chat Persists in Word or Excel After Policy Application

Office apps do not re-read Group Policy settings until they restart. Ensure the user closes all Office applications and reopens them. If the policy is applied to the computer but the user is not in the scope, the policy will not take effect. Verify the Group Policy Object is linked to the correct organizational unit.

Copilot Chat Icon Shows in Outlook Web App

The Outlook web app reads the tenant toggle from the Microsoft 365 admin center. If you turned off the toggle in Method 1, the web app should respect it. If it does not, clear the browser cache or open Outlook Web App in a private browsing session to confirm the toggle state.

Item License Removal Only License Removal + Tenant Toggle Off
Description Removes the user’s Copilot license but leaves the chat interface visible Removes the license and disables the chat pane across all apps
User experience User sees Copilot Chat button but cannot use premium features User sees no Copilot Chat button in any Microsoft 365 app
Management effort One step in the admin center Two steps: license removal + tenant toggle or policy
Propagation time Instant for licensing Up to 24 hours for the toggle, faster with policy
Best for Organizations that want to keep the chat interface but restrict premium features Organizations that want to remove all Copilot presence from the user interface

After completing the steps in this article, you can now remove both the Copilot license and the Copilot Chat interface from your users. If you need to re-enable Copilot Chat later, simply reverse the toggle or policy setting. For organizations that manage many users, consider using PowerShell scripts to apply the tenant toggle change across multiple tenants or to audit the current Copilot Chat state.

ADVERTISEMENT