This page looks best with JavaScript enabled

Removing Included Microsoft Store Apps from Windows 10 & Windows 11

 ·  ☕ 7 min read

When deploying Windows 10/11 you might want to remove some of the included Microsoft Store Apps to help speed up the login process, save storage space, bandwidth etc.

Important note!

A “provisioned app” is an app that is a part of the Windows 10/11 installation and will be available for all users. Otherwise the app is only installed for the currently logged on user. To remove apps for all future users and the currently logged on user, you must remove both types of app.

Removing Specific Microsoft Store Apps

To remove a specific app from your Windows 10/11 installation, first you need to find the application package name.

Provisioned apps:

1
Get-AppxProvisionedPackage -Online | Select PackageName

Current user apps:

1
Get-AppxPackage | Select PackageFullName

Then run the following PowerShell command to remove the specific app

Provisioned app:

1
Remove-AppxProvisionedPackage -PackageName [PackageName here] -Online

Current user app:

1
Remove-AppxPackage -Package [PackageFullName here]

App Names Table

Here is a table of app names in PowerShell and what they relate to in Windows.

Windows 11 Apps

PowerShell Display Name App name Notes
Clipchamp.Clipchamp Clipchamp New in 22H2
Microsoft.549981C3F5F10 Cortana No change
Microsoft.BingNews Microsoft News No change
Microsoft.BingWeather Weather No change
Microsoft.DesktopAppInstaller winget No change
Microsoft.GamingApp Xbox No change
Microsoft.GetHelp Get Help No change
Microsoft.Getstarted Tips No change
Microsoft.HEIFImageExtension None No change
Microsoft.HEVCVideoExtension None New in 22H2
Microsoft.MicrosoftEdge.Stable Microsoft Edge No change
Microsoft.MicrosoftOfficeHub Office No change
Microsoft.MicrosoftSolitaireCollection Microsoft Solitaire Collection No change
Microsoft.MicrosoftStickyNotes Sticky Notes No change
Microsoft.Paint Paint No change
Microsoft.People People No change
Microsoft.PowerAutomateDesktop Power Automate No change
Microsoft.RawImageExtension None New in 22H2
Microsoft.ScreenSketch Snip & Sketch No change
Microsoft.SecHealthUI None No change
Microsoft.StorePurchaseApp None No change
Microsoft.Todos Microsoft To Do No change
Microsoft.VCLibs.140.00 None No change
Microsoft.VP9VideoExtensions None No change
Microsoft.WebMediaExtensions None No change
Microsoft.WebpImageExtension None No change
Microsoft.Windows.Photos (2) “Photos” and “Video editor” No change
Microsoft.WindowsAlarms Alarms & Clock No change
Microsoft.WindowsCalculator Calculator No change
Microsoft.WindowsCamera Camera No change
microsoft.windowscommunicationsapps (2) “Calendar” and “Mail” No change
Microsoft.WindowsFeedbackHub Feedback Hub No change
Microsoft.WindowsMaps Maps No change
Microsoft.WindowsNotepad Notepad No change
Microsoft.WindowsSoundRecorder Voice Recorder No change
Microsoft.WindowsStore Microsoft Store No change
Microsoft.WindowsTerminal Terminal No change
Microsoft.Xbox.TCUI None No change
Microsoft.XboxGameOverlay None No change
Microsoft.XboxGamingOverlay Xbox Game Bar No change
Microsoft.XboxIdentityProvider None No change
Microsoft.XboxSpeechToTextOverlay None No change
Microsoft.YourPhone Your Phone No change
Microsoft.ZuneMusic Media Player No change
Microsoft.ZuneVideo Films & TV No change
MicrosoftCorporationII.QuickAssist Quick Assist New in 22H2
MicrosoftTeams Microsoft Teams No change
MicrosoftWindows.Client.WebExperience None No change

Windows 10 Apps

PowerShell Display Name App name Notes
Microsoft.549981C3F5F10 Cortana New in 2004
Microsoft.BingWeather Weather No change
Microsoft.DesktopAppInstaller winget No change
Microsoft.GetHelp Get Help No change
Microsoft.Getstarted Tips No change
Microsoft.HEIFImageExtension None No change
Microsoft.Messaging Messaging Removed in 2004
Microsoft.Microsoft3DViewer 3D Viewer No change
Microsoft.MicrosoftEdge.Stable Microsoft Edge New in 21H1
Microsoft.MicrosoftOfficeHub Office No change
Microsoft.MicrosoftSolitaireCollection Microsoft Solitaire Collection No change
Microsoft.MicrosoftStickyNotes Sticky Notes No change
Microsoft.MixedReality.Portal Mixed Reality Portal No change
Microsoft.MSPaint Paint 3D No change
Microsoft.Office.OneNote OneNote No change
Microsoft.OneConnect None Removed in 2004
Microsoft.People People No change
Microsoft.Print3D Print 3D Removed in 2004
Microsoft.ScreenSketch Snip & Sketch No change
Microsoft.SkypeApp Skype No change
Microsoft.StorePurchaseApp None No change
Microsoft.VCLibs.140.00 None New in 2004
Microsoft.VP9VideoExtensions None No change
Microsoft.Wallet None No change
Microsoft.WebMediaExtensions None No change
Microsoft.WebpImageExtension None No change
Microsoft.Windows.Photos (2) “Photos” and “Video editor” No change
Microsoft.WindowsAlarms Alarms & Clock No change
Microsoft.WindowsCalculator Calculator No change
Microsoft.WindowsCamera Camera No change
microsoft.windowscommunicationsapps (2) “Calendar” and “Mail” No change
Microsoft.WindowsFeedbackHub Feedback Hub No change
Microsoft.WindowsMaps Maps No change
Microsoft.WindowsSoundRecorder Voice Recorder No change
Microsoft.WindowsStore Microsoft Store No change
Microsoft.Xbox.TCUI None No change
Microsoft.XboxApp Xbox Console Companion No change
Microsoft.XboxGameOverlay None No change
Microsoft.XboxGamingOverlay Xbox Game Bar No change
Microsoft.XboxIdentityProvider None No change
Microsoft.XboxSpeechToTextOverlay None No change
Microsoft.YourPhone Your Phone No change
Microsoft.ZuneMusic Groove Music No change
Microsoft.ZuneVideo Films & TV No change

Remove Specific MS Store Apps From An Online Windows 10/11 WIM Image

Note: The Start Menu in Windows 10 for new users, will still have icons for the removed apps. They can be removed manually by the user, or you can configure the Start Menu (and Taskbar) using a few different options. I’ve written about administratively configuring the Start Menu previously, here and here.

Download my PowerShell utility from GitHub.

The script removes the apps specified in a text file from the current logged on user and Windows 10/11. I use the script as a part of my Task Sequence for deploying Windows 10/11. The script is heavily based on work by Jörgen Nilsson - check out his post over on his site.

Remove Specified MS Store Apps From An Offline Windows 10/11 WIM Image

First, you will need to copy the contents of the Windows 10/11 ISO file to your hard drive.

Windows 10/11 includes many editions within it’s WIM file. You will need to specify the index ID of the image to operate on. You can obtain this by running the following PowerShell command:

1
Get-WindowsImage -ImagePath "C:\foo\Windows 10\sources\install.wim" | Format-Table -Property ImageIndex, ImageName

The output of the command above should look similar to this:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
ImageIndex ImageName
---------- ---------
1 Windows 10 Education
2 Windows 10 Education N
3 Windows 10 Enterprise
4 Windows 10 Enterprise N
5 Windows 10 Pro
6 Windows 10 Pro N
7 Windows 10 Pro Education
8 Windows 10 Pro Education N
9 Windows 10 Pro for Workstations
10 Windows 10 Pro N for Workstations

Now you can use the information above to configure the PowerShell utility to remove the specific apps from the Windows install image. This script will mount the image, remove the apps and then dismount it. The image can then be made into an ISO or used with MDT/SCCM to deploy Windows as normal.

Download my PowerShell utility from GitHub.

Note: This process is destructive and non-reversible. Please ensure you have backups before proceeding. To simply remove all the apps possible for the current user, run the following PowerShell command:

1
Get-AppxPackage | Remove-AppxPackage

To remove all the provisioned apps, run the following PowerShell command:

Note: Provisioned apps are the apps that will be installed for all new users when they first log on.

1
Get-AppxProvisionedPackage -Online | Remove-AppxProvisionedPackage -Online

Support My Work

Please consider supporting my work:

  • Support with a one-time donation using PayPal.

If you have any questions or comments please leave them below.

-Mike

Page History

Update 2022-10-20

Added information relating to Windows 10 22H2.

Update 2022-09-21

Added information relating to Windows 11 22H2.

Update 2021-11-22

Added information relating to Windows 10 21H2.

Update 2021-09-03

Added information relating to Windows 11 21H2.

Update 2021-05-12

Added information relating to Windows 10 21H1 May 2021 Update.

Update 2020-11-02

Added information relating to Windows 10 20H2 October 2020 Update.

Update 2020-06-12

Added information relating to Windows 10 2004 May 2020 Update (20H1).

Update 2020-01-27

Removed information for old unsupported versions of Win 10 and added a table to show which app maps to the display names in PowerShell.

Update 2019-10-06

Updated to include Windows 10 1909 November 2019 Update (19H2) Enterprise edition.

Update 2019-05-23

Updated to reflect the apps included in Windows 10 1903, May 2019 Update (19H1) Enterprise edition.

Update 2018-10-06

An update to reflect some tests I’ve done with Windows 10 1809, October 2018 Update.

Update 2018-05-07

A minor update to reflect some quick tests I’ve done with Windows 10 1803, April 2018 Update.

Update 2018-03-30

Minor maintenance update. Reworked some sections to be more clear and instructive. Added some new information from my own testing and fact checking.

Update 2017-10-17

Updated post with the list of apps included in Windows 10 1709 (Fall Creators Update) by default.

Update 2017-08-03

I’ve re-written much of this post to answer some questions that have come up and to help clarify the process. Thanks to Jörgen Nilsson over at ccmexec.com, with his original post that inspired me to write this one.

Share on
Support the author with