- Aug 22, 2013
- 902
I have completely removed the Co-pilot app from my windows 11 system as I don't need AI in an app on my system. If I need the service of Ai I prefer to use the browser rather than a System wide app.
This is how I remove the Co-pilot app from my PC.
Run PowerShell as Administrator
This is how I remove the Co-pilot app from my PC.
Run PowerShell as Administrator
Code:
Get-AppxPackage Microsoft.Windows.Ai.Copilot.Provider -AllUsers | Remove-AppxPackage
Get-AppxProvisionedPackage -Online | where-object {$_.PackageName –like "*Copilot*"} | Remove-AppxProvisionedPackage -online