Uninstall Apps in Windows 11 (2025)

Uninstall Apps in Windows 11 (1)

This tutorial will show you how to uninstall apps in Windows 11.

If you no longer want or use an app, then you could uninstall the app to remove it and free up space on the drive.

Desktop apps are traditional programs installed by a user. These will not be an app from the Microsoft Store.

Windows apps are apps installed by a user from the Microsoft Store. Each Microsoft account owns their own apps.

Provisioned apps are apps included with Windows 11, and automatically installed when a new user signs in to Windows the first time. They are per-user apps, and typically installed in the "C:\Program Files\WindowsApps" folder. These are also available in Microsoft Store for a user to reinstall if needed.

Android apps are apps users can install from the Microsoft Store via Android Appstore. This feature uses the Windows Subsystem for Android (WSA), and allows users to interact with Android apps, just like others apps installed from the Microsoft Store. Windows Subsystem for Android (WSA) is being deprecated beginning March 5, 2025.

Starting with Windows 11 build 23585 (Dev), the Camera app, Cortana, Photos app, and People app, and Remote Desktop (MSTSC) client can be uninstalled.

Reference:

Uninstall Apps in Windows 11 (2)

Overview of apps on Windows client devices

Learn about the different types of apps that run on Windows. For example, Universal Windows Platform (UWP), Windows Presentation Foundation (WPF), Win32, and Windows Forms apps. This article also includes the best way to install these apps.

docs.microsoft.com

Contents


  • Option One: Uninstall Desktop Apps, Windows Apps, and Android Apps in Start Menu
  • Option Two: Uninstall Desktop Apps, Windows Apps, and Android Apps in Settings
  • Option Three: Uninstall Desktop Apps in Control Panel
  • Option Four: Uninstall Windows Apps and Android Apps for Current User in PowerShell
  • Option Five: Uninstall Apps for Current User using winget Command
  • Option Six: Uninstall Provisioned Apps for Current User in PowerShell
  • Option Seven: Uninstall Provisioned Apps for All Users in PowerShell

Option One

Uninstall Desktop Apps, Windows Apps, and Android Apps in Start Menu


1 Open the Start menu Uninstall Apps in Windows 11 (3), and click/tap on the All apps button. (see screenshot below)

Uninstall Apps in Windows 11 (4)


2 Right click or press and hold on the app (ex: "Speedtest") you want to uninstall, and click/tap on Uninstall. (see screenshot below)

Uninstall Apps in Windows 11 (5)


3 If this is a desktop app, then go to step 3 in Option Two to uninstall the app in Settings.

Starting with Windows 11 version 22H2 KB5030310 Build 22621.2361, right-clicking on a Win32 app in Start, or searching for the app, and choosing “Uninstall” will now take you to the Settings to uninstall the app.


4 If this is a Windows app, then click/tap on Uninstall to confirm. (see screenshot below)

Uninstall Apps in Windows 11 (6)

Option Two

Uninstall Desktop Apps, Windows Apps, and Android Apps in Settings


1 Open Settings (Win+I).

2 Click/tap on Apps on the left side, and click/tap on Installed apps on the right side. (see screenshot below)

System Components that were listed on the Settings > Apps > Installed Apps page have moved to their own page under Settings > System > System Components.


Open Installed apps settings


Open System components settings


Uninstall Apps in Windows 11 (7)


3 Click/tap on the More options (3 dots) button for the app (ex: "Speedtest") you want to uninstall, and click/tap on Uninstall. (see screenshots below)

Uninstall Apps in Windows 11 (8)

Uninstall Apps in Windows 11 (9)


4 Click/tap on Uninstall to confirm. (see screenshot below)

Uninstall Apps in Windows 11 (10)


5 If this is a desktop app, then follow any instructions for that program's uninstaller. This will vary per program.

6 When finished, you can close Settings if you like.

Option Three

Uninstall Desktop Apps in Control Panel


This option is no longer available starting with Windows 11 build 22523.

Links to Programs & Features in Control Panel will now open to Settings > Apps > Installed Apps.


1 Open the Control Panel (icons view), and click/tap on the Programs and Features icon.

2 Perform one of the following actions: (see screenshot below)

  • Click/tap on the app (ex: "Axialis IconWorkshop") you want to uninstall.
  • Select the app (ex: "Axialis IconWorkshop") you want to uninstall, and click/tap on Uninstall on the toolbar.
  • Right click or press and hold on the app (ex: "Axialis IconWorkshop") you want to uninstall, and click/tap on Uninstall.

Uninstall Apps in Windows 11 (11)


3 If prompted by UAC, click/tap on Yes to approve.

4 Follow any instructions for that program's uninstaller. This will vary per program. (see screenshot below)

Uninstall Apps in Windows 11 (12)


5 When finished, you can close the Control Panel if you like.

Option Four

Uninstall Windows Apps and Android Apps for Current User in PowerShell


1 Open Windows Terminal, and select Windows PowerShell.

2 Copy and paste the command below you want to use into Windows Terminal, and press Enter to see a list of all installed Windows apps for the current user account. (see screenshot below)

(outputs to text file on your desktop)​

Get-AppxPackage | Where-Object {$_.NonRemovable -eq $False} | Select Name, PackageFullName >"$env:userprofile\Desktop\Apps_List.txt"


OR​


(outputs inside PowerShell)​

Get-AppxPackage | Where-Object {$_.NonRemovable -eq $False} | Select Name, PackageFullName


Uninstall Apps in Windows 11 (13)


3 Scroll through the list of installed apps, and look for the PackageFullName (ex: "Ookla.SpeedtestbyOokla_1.15.163.0_x64__43tkc6nmykmb6") of the app (ex: "Speedtest") you want to uninstall. (see screenshot above)

4 Type the command below into Windows Terminal, and press Enter. (see screenshot below)

Remove-AppxPackage -Package "PackageFullName"


Substitute PackageFullName in the command above with the app's (ex: "Speedtest") actual PackageFullName (ex: "Ookla.SpeedtestbyOokla_1.15.163.0_x64__43tkc6nmykmb6") from step 3.

For example: Remove-AppxPackage -Package "Ookla.SpeedtestbyOokla_1.15.163.0_x64__43tkc6nmykmb6"


Uninstall Apps in Windows 11 (14)


5 When finished, you can close Windows Terminal if you like.

Option Five

Uninstall Apps for Current User using winget Command


You must be signed in as an administrator to use this option.


Uninstall Apps in Windows 11 (15)

list Command

Displays the list of listed apps and if an update is available.

learn.microsoft.com

Uninstall Apps in Windows 11 (16)

uninstall Command

uninstalls the specified application.

learn.microsoft.com


1 Open Windows Terminal (Admin), and select either Windows PowerShell or Command Prompt.

2 Copy and paste the command below into Windows Terminal (Admin), and press Enter to see a list of all installed apps. (see screenshot below step 3)

winget list


3 Scroll through the list of installed apps, and make note of the Name (ex: "Microsoft To Do") of the app you want to uninstall. (see screenshot below)

Uninstall Apps in Windows 11 (17)


4 Type the command below into Windows Terminal (Admin), and press Enter. (see screenshot below)

winget uninstall "App Name"


Substitute App Name in the command above with the actual app's Name (ex: "Microsoft To Do") from step 3.

For example: winget uninstall "Microsoft To Do"


Uninstall Apps in Windows 11 (18)


5 When finished, you can close Windows Terminal (Admin) if you like.

Option Six

Uninstall Provisioned Apps for Current User in PowerShell


1 Open Windows Terminal, and select Windows PowerShell.

2 Copy and paste the command below you want to use into Windows Terminal, and press Enter to see a list of all installed built-in apps. (see screenshot below)

(outputs to text file on your desktop)​

Get-AppxPackage -PackageTypeFilter Bundle | Where-Object {$_.NonRemovable -eq $False} | Select-Object Name, PackageFullName >"$env:userprofile\Desktop\Provisioned_Apps_List.txt"


OR​


(outputs inside PowerShell)​

Get-AppxPackage -PackageTypeFilter Bundle | Where-Object {$_.NonRemovable -eq $False} | Select-Object Name, PackageFullName


Uninstall Apps in Windows 11 (19)


3 Scroll through the list of installed apps, and look for the Name (ex: "Microsoft.XboxGamingOverlay") of the built-in app (ex: "Xbox Game Bar") you want to uninstall. (see screenshot above)

4 Type the command below into Windows Terminal (Admin), and press Enter. (see screenshot below)

Get-AppxPackage -PackageTypeFilter Bundle -Name "Name" | Remove-AppxPackage


Substitute PackageFullName in the command above with the app's (ex: "Tips") actual Name (ex: "Microsoft.GetHelp") from step 3.

For example: Get-AppxPackage -PackageTypeFilter Bundle -Name "Microsoft.XboxGamingOverlay" | Remove-AppxPackage


Uninstall Apps in Windows 11 (20)


5 When finished, you can close Windows Terminal if you like.

Option Seven

Uninstall Provisioned Apps for All Users in PowerShell


You must be signed in as an administrator to use this option.


1 Open Windows Terminal (Admin), and select Windows PowerShell.

2 Copy and paste the command below you want to use into Windows Terminal (Admin), and press Enter to see a list of all installed built-in apps. (see screenshot below)

(outputs to text file on your desktop)​

Get-AppxPackage -AllUsers -PackageTypeFilter Bundle | Where-Object {$_.NonRemovable -eq $False} | Select-Object Name, PackageFullName >"$env:userprofile\Desktop\Provisioned_Apps_List.txt"


OR​


(outputs inside PowerShell)​

Get-AppxPackage -AllUsers -PackageTypeFilter Bundle | Where-Object {$_.NonRemovable -eq $False} | Select-Object Name, PackageFullName


Uninstall Apps in Windows 11 (21)


3 Scroll through the list of installed apps, and look for the Name (ex: "Microsoft.GetHelp") of the built-in app (ex: "Tips") you want to uninstall. (see screenshot above)

4 Type the command below into Windows Terminal (Admin), and press Enter. (see screenshot below)

Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name "Name" | Remove-AppxPackage -AllUsers


Substitute PackageFullName in the command above with the app's (ex: "Tips") actual Name (ex: "Microsoft.GetHelp") from step 3.

For example: Get-AppxPackage -AllUsers -PackageTypeFilter Bundle -Name "Microsoft.GetHelp" | Remove-AppxPackage -AllUsers


Uninstall Apps in Windows 11 (22)


5 When finished, you can close Windows Terminal (Admin) if you like.

That's it,
Shawn Brink

Related Tutorials


  • Remove Uninstall Entries for Apps in Windows 11
  • Disable Uninstall Entries for Apps in Windows 11
  • Reinstall Built-in Apps in Windows 11
  • Uninstall Windows Subsystem for Android (WSA) in Windows 11
  • Choose where to get apps in Windows 11
  • Change Where New Apps will Save to in Windows 11
  • Move App to another Drive in Windows 11
  • Uninstall Windows Subsystem for Linux (WSL) Distro in Windows 11
  • Find Install Date of Apps in Windows 11
  • Uninstall or Reinstall Xbox Game Bar in Windows 11
  • Uninstall or Reinstall Dev Home app in Windows 11
  • Uninstall or Reinstall New Outlook for Windows app in Windows 11
  • Download and Install Microsoft PC Manager app in Windows 11 and Windows 10
  • Uninstall or Reinstall Microsoft Store app in Windows 10 and Windows 11
  • Uninstall or Reinstall Copilot app in Windows 11 and Windows 10
Uninstall Apps in Windows 11 (2025)

References

Top Articles
Latest Posts
Recommended Articles
Article information

Author: Carmelo Roob

Last Updated:

Views: 6633

Rating: 4.4 / 5 (45 voted)

Reviews: 92% of readers found this page helpful

Author information

Name: Carmelo Roob

Birthday: 1995-01-09

Address: Apt. 915 481 Sipes Cliff, New Gonzalobury, CO 80176

Phone: +6773780339780

Job: Sales Executive

Hobby: Gaming, Jogging, Rugby, Video gaming, Handball, Ice skating, Web surfing

Introduction: My name is Carmelo Roob, I am a modern, handsome, delightful, comfortable, attractive, vast, good person who loves writing and wants to share my knowledge and understanding with you.