Skip to content

Instantly share code, notes, and snippets.

@BenOnSocial
Last active July 4, 2024 23:47
Show Gist options
  • Select an option

  • Save BenOnSocial/e77606ec9abaf5a6fa724f726635bb9c to your computer and use it in GitHub Desktop.

Select an option

Save BenOnSocial/e77606ec9abaf5a6fa724f726635bb9c to your computer and use it in GitHub Desktop.
Uninstall Windows Copilot in Windows 11.
# Start Windows PowerShell with Run as administrator, then execute the following command, then reboot.
Get-AppxPackage *CoPilot* -AllUsers | Remove-AppPackage -AllUsers
Get-AppxProvisionedPackage -Online | where-object {$_.PackageName -like "*Copilot*"} | Remove-AppxProvisionedPackage -online
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment