A specific functionality or enhancement provided by Windows Copilot
Microsoft, this is predatory behavior.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I finally got really tired of having the Copilot icon pop up in front of the text I'm editing, and I decided to get rid of it.
The simplest and cleanest way to do that was to uninstall Copilot, and so I did. The uninstall was flawless, except that when I was done, Copilot was still there in Word, tossing its icon in my way.
Another week or so passed. Today I decided to try again. I looked for a way to disable Copilot in Word, and I found this:
Clear the "Enable Copilot" checkbox on Windows devices
1. In your app (for example, Excel), go to File > Options > Copilot. 2. Clear the Enable Copilot checkbox. 3. Select OK, and then close and restart the app.
There is no Copilot tab in File>Options. There's General, Display, Proofing, Save, Language, Accessibility, Advanced, Customize Ribbon, Quick Access Toolbar, Add-ins, and Trust Center. Sorry, Charlie.
What does Microsoft have to say about that?
[T]he Enable Copilot checkbox is available in the following apps starting with... Word: Version 2412."
Word says I'm running version 2505, so the checkbox should be there. Except it's not.
And BTW, I found that Windows has re-installed Copilot for me. Without asking. Even if uninstalling it did any good, it wouldn't do any good.
So I came here. Since Microsoft's documentation is f... ailing me again, how can I get rid of the Copilot icon?
A specific functionality or enhancement provided by Windows Copilot
Locked Question. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
Microsoft, this is predatory behavior.
That's a rather intimidating response: six different procedures to try. And it's not clear whether I have my choice, or only one of them will work for me, depending on something not revealed.
OK, I tried Method 1. For what it's worth, I got this:
I abandoned Method 1 because so much of the information it tells me to collect is actually not there.
On to Method 2. "Turn on optional connected experiences" was already checked. I could not "allow" the other two options because they were not there.
That's enough. With #1 and #2 failed, I'm not going to waste more time trying to use #3 through #6.
I asked a pretty simple question and got a three-page reply listing six different procedures, the first two of which don't work. This is not a response that solves a user's problem; it's a response that makes a user go away. It's like the "terms and conditions" notice that's ten pages of Legalese fine print, that could say anything at all because no one will ever read it,
I know you're copying and pasting from a Microsoft playbook, so when I say "you" I'm addressing Microsoft, not Kim Nouven, but I'm going to be frank: If your objective is to get rid of me, you've succeeded. If it is to help me, you've totally failed.
These "solutions" no longer work as of 12/09/2025 with Version 2511 Build 16.0.19426.20186 being released.
The option to disable Co-Pilot has been removed AND it is now added as a constant ALWAYS ON hovering bubble in the lower right corner of Word.
The fact that "zombie AI components and documents" even EXIST, and Microsoft knows about them and isn't doing anything about it is yet one more reason to run far, far away from all Microsoft products. They can't even keep their own systems clean.
Also, how exactly was Method 1 (verifying system details) supposed to change anything??? What magic is this you speak of that allows a user to look at their screen and suddenly the problem they had just fixes itself? Because DANG, like the entire world could use that kind of magic.
Hi Jonathan Sachs,
Thanks for reaching out here in the Microsoft Q&A. I can understand the inconvenience this issue has caused you. To help resolve this issue, please follow the steps outlined below:
Method 1: Verify System Details
Confirms if a managed account, preview build, or Copilot+ PC affects settings or checkbox availability. Informs whether AppLocker (Pro/Enterprise) or managed account actions apply.
Method 2: Toggle Connected Experiences to Reveal or Disable Copilot
Enables the checkbox (rollout/bug) or disables Copilot’s cloud-based AI, addressing core functionality and potential UI issues.
# PowerShell script to disable connected experiences
$regPath = "HKCU:\Software\Microsoft\Office\16.0\Common\Privacy"
if (-not (Test-Path $regPath)) { New-Item -Path $regPath -Force }
Set-ItemProperty -Path $regPath -Name "UserContentEnabled" -Value 0 -Type DWord -Force
Set-ItemProperty -Path $regPath -Name "ConnectedExperiencesEnabled" -Value 0 -Type DWord -Force
Write-Output "Connected experiences disabled."
Save as disable_connected_experiences.ps1, run as Administrator:
.\disable_connected_experiences.ps1
Restart Word, test.
Method 3: Hide Copilot from Word’s Ribbon
Removes Copilot’s embedded UI, addressing shell integration and reducing visibility.
Method 4: Uninstall & Block Reinstall
Covers forced reinstalls and system integration. Run in PowerShell:
# Remove Copilot
Get-AppxPackage -Name "Microsoft.Windows.Copilot" | Remove-AppxPackage -AllUsers
# Block via registry
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsCopilot" /v "TurnOffWindowsCopilot" /t REG_DWORD /d 1 /f
# Prevent Windows Update from reinstalling
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" /v "ExcludeWUDriversInQualityUpdate" /t REG_DWORD /d 1 /f
Method 5: Nuke Automatic Reinstalls
Stops Microsoft from sneaking Copilot back in updates and works even on managed enterprise devices. Run in PowerShell:
# Block Windows Update delivery
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" /v "ExcludeWUDriversInQualityUpdate" /t REG_DWORD /d 1 /f
# AppLocker nuclear option (Pro/Enterprise only)
New-AppLockerPolicy -RuleType Publisher -User Everyone -PublisherName "Microsoft.Windows.Copilot" -Deny -Action Deny
Method 6: Purge & Report
Eliminates zombie AI components and documents Microsoft's forced integration. Run in PowerShell:
# Delete AI caches
Remove-Item -Path "$env:LOCALAPPDATA\Microsoft\Office\16.0\WEF" -Recurse -Force -ErrorAction SilentlyContinue
# Report missing checkbox to Microsoft
Start-Process "feedback-hub:?contextid=147&tabid=2&newFeedback=true&searchTerm=Copilot"
If the answer is helpful, please click Accept Answer and kindly upvote it. If you have extra questions about this answer, please click Comment.
Note: Please follow the steps in our document to enable e-mail notifications if you want to receive the related email notification for this thread.
Best Regards,
Kim Nguyen - MSFT | Microsoft Q&A Support Specialist