You are trying to cancel a Microsoft 365 Copilot trial in the Microsoft 365 admin center, but the Cancel button is grayed out, missing, or clicking it does nothing. This usually happens because the trial license was assigned to users, the subscription is in a pending state, or the admin center UI is cached. This article explains why the cancellation fails and provides step-by-step fixes to remove the trial from your tenant.
Key Takeaways: Cancel a Stuck Copilot Trial
- Microsoft 365 admin center > Billing > Your products: The standard location to cancel any subscription, including Copilot trials.
- Remove all assigned licenses first: Admin center blocks cancellation if any user still holds a Copilot trial license.
- Use PowerShell to force-cancel: When the UI fails,
Set-MgSubscriptioncmdlet can cancel the subscription directly.
Why the Cancel Button Is Grayed Out or Missing
The Microsoft 365 admin center prevents cancellation of a Copilot trial when one or more users have an active trial license assigned. The system treats the trial as in-use and disables the Cancel action to avoid accidental removal of active services. A second common cause is a pending payment or credit check on the trial subscription. If the trial was converted to a paid plan and then downgraded, the admin center may show a stale state. A third cause is a browser cache or session issue that prevents the UI from loading the correct subscription status.
Trial License Assignment Blocks Cancellation
Each Copilot trial license assigned to a user counts as an active subscription. The admin center checks for assigned licenses before enabling the Cancel button. If even one user has the license, the button stays disabled.
Pending Subscription State
If the trial is in a grace period, suspended, or pending reactivation, the admin center may not display the Cancel option. This state occurs when the trial period expired but the system has not yet fully disabled the subscription.
UI Cache or Browser Session Issue
Stale browser cache, corrupted cookies, or an expired session token can cause the admin center to show outdated subscription data. The Cancel button may appear grayed out even when no licenses are assigned.
Steps to Cancel a Stuck Copilot Trial
Follow these steps in order. Stop when the cancellation succeeds.
- Remove all Copilot trial licenses from users
Go to Microsoft 365 admin center > Users > Active users. Select each user who has a Copilot trial license. Click Licenses and apps. Uncheck Microsoft 365 Copilot. Click Save changes. Repeat for every user. To remove licenses in bulk, select multiple users, click Manage product licenses, and uncheck Copilot. - Clear browser cache and cookies for the admin center
Open your browser settings. Clear cached images and files. Delete cookies specifically for admin.microsoft.com and microsoft.com. Close the browser completely. Reopen and sign in to the admin center. - Navigate to the trial subscription and cancel
Go to Billing > Your products. Locate the Copilot trial subscription. Click the subscription name. Look for the Cancel subscription link. If the link is active, click it and follow the prompts. If the link is still grayed out, proceed to the next step. - Use PowerShell to cancel the trial
Open Windows PowerShell as an administrator. Install the Microsoft Graph module if not already installed:Install-Module Microsoft.Graph -Scope CurrentUser. Connect to Microsoft Graph with billing permissions:Connect-MgGraph -Scopes "Subscription.ReadWrite.All". List all subscriptions:Get-MgSubscription | Format-List Id, DisplayName, Status. Find the Copilot trial subscription ID. Cancel it:Set-MgSubscription -SubscriptionId "trial-subscription-id" -Cancelled. Replacetrial-subscription-idwith the actual ID. - Verify cancellation in the admin center
Refresh the Your products page. The Copilot trial should show a status of Disabled or Deleted. If it still appears, wait 15 minutes and refresh again. If the subscription remains, contact Microsoft support and reference the subscription ID from PowerShell.
If Copilot Still Shows as Active After Cancellation
The Cancel Button Returns After a Few Days
If the trial was canceled via PowerShell but the admin center still shows it, the UI may take up to 48 hours to refresh. Check the subscription status in Billing > Subscriptions after 24 hours. If it still shows active, run Get-MgSubscription again to confirm the status changed.
Users Still Have Copilot Access After Cancellation
Canceling the trial does not automatically remove Copilot from user desktops. Users may still see the Copilot icon in Microsoft 365 apps. To remove it, go to Users > Active users, select each user, and under Licenses and apps, ensure the Copilot license is unchecked. Then ask users to sign out and sign back in to Office apps.
Cannot Remove License Because It Is Inherited from a Group
If the Copilot license is assigned via a group-based licensing policy, you cannot remove it from individual users. Go to Groups > Groups, find the group that has the Copilot license assigned, and remove the license from the group. Then users will lose the license on their next sign-in.
| Item | Admin Center UI Method | PowerShell Method |
|---|---|---|
| Tools required | Web browser, admin credentials | PowerShell, Microsoft Graph module |
| Steps count | 3 to 4 steps | 5 steps |
| Works when Cancel button is grayed out | No | Yes |
| Requires license removal first | Yes | Yes |
| Can cancel without user sign-out | Yes | Yes |
| UI refresh delay after cancellation | Up to 48 hours | Up to 48 hours |
Now you can cancel a stuck Copilot trial by removing all assigned licenses, clearing your browser cache, or using PowerShell as a fallback. If the admin center still fails, the PowerShell method bypasses the UI entirely. After cancellation, verify the subscription status and remove any group-based license assignments to fully disable Copilot for all users.