Remove/Uninstall Copilot App from Windows 11

In this blog post, we will see different ways to remove or uninstall Microsoft Copilot app from Windows 11 devices. Recently, Microsoft has removed the Copilot preview experience and changed it to a dedicated app which is by default installed on latest Windows 11 OS.

For using this app, you will need to login using either your Microsoft account or Entra ID account. There could be a scenario with the IT team has not yet fully tested all the Copilot features and are not comfortable releasing it to users for production use.

It can be uninstalled from Windows 11 devices and re-installed later when you are ready. Let’s check the steps:

Uninstall Copilot by Right-Clicking the App

You can uninstall Copilot app by simply right-clicking the app and selecting Uninstall.

Uninstall Copilot by Right-Clicking the App

Uninstall Copilot App from Settings

  • Press Win + I keys together to open the Settings app.
  • Go to Apps > Installed apps.
  • Search for Copilot app and click on three dots > Select Uninstall
Uninstall Copilot App from Settings

Uninstall Copilot app using Powershell [For Current User]

  • Open the Powershell console and execute below command to check for the Installed Copilot app.

Check if Copilot app is installed

Get-AppxPackage | Where-Object {$_.Name -Like '*Microsoft.Copilot*'}
Uninstall Copilot app using Powershell
  • Uninstall/Remove the Copilot app using below command.

Uninstall Copilot for current user

Get-AppxPackage | Where-Object {$_.Name -Like '*Microsoft.Copilot*'} | Remove-AppxPackage -ErrorAction Continue​

Uninstall Copilot app using Powershell [For All Users]

Open the Powershell console as administrator and execute below command to Uninstall Copilot for All users using the device.

Uninstall Copilot for All Users

Get-AppxPackage -AllUsers | Where-Object {$_.Name -Like '*Microsoft.Copilot*'} | Remove-AppxPackage -AllUsers -ErrorAction Continue​

Uninstall Copilot App using Winget

  • Open Powershell console as administrator and execute winget list.

List all packages using winget

winget list
  • Copy the Package Id of Copilot app.
Copy Package ID from Winget list command
  • Execute below command to remove Copilot using Winget

Uninstall Copilot using Winget

winget uninstall --id MSIX\Microsoft.Copilot_1.0.4.0_neutral__8wekyb3d8bbwe
Uninstall Copilot App using Winget

Reinstall Copilot App on Windows 11 Devices

If your testing and documentation on Copilot app has been completed and you now decide to reinstall copilot app. There are various ways to do it. Let’s check

1. Using Microsoft Store App

Users can install Microsoft Copilot app by opening Microsoft store app on their device and searching for copilot app. Then click on Get button to Install it.

Install Copilot from MS Store

2. Download Copilot App Executable file

You can download Microsoft Copilot app executable file that can be used to distribute the app on multiple computers. To download Microsoft Copilot Installer.exe file, Open any web browser and visit the link: https://apps.microsoft.com/detail/9nht9rb2f4hd?hl=en-us&gl=US and click on the Download button.

Download Microsoft Copilot App Exe file

3. Install Copilot App using Winget

You can also use Winget to install Copilot app on Windows 11 devices. Launch powershell console as administrator and execute the following command:

Winget install -s msstore --id 9nht9rb2f4hd
Install Copilot using Winget

4. Deploy Copilot app using Intune

You can also deploy Copilot app using Intune. This app is available for deployment from Microsoft store. For detailed guidance on how to deploy Microsoft store (new) apps, refer to the blog post: Deploy Microsoft Store Apps using Intune.

Deploy Copilot using Intune

Read Next

2 thoughts on “Remove/Uninstall Copilot App from Windows 11”

  1. No he recibido la actualización con copilot. La recibiré más adelante? cuándo?
    [I have not received the update with copilot. Will I receive it later? when?]

    Reply

Leave a Comment