Built-in apps are called provisioned apps. They are scheduled to be installed for each new user that registers on a Windows 8 PC, so you can't uninstall them completely from the Start screen. To do so, you've to use Windows PowerShell command remove-AppxProvisionedPackage, like so:

remove-AppxProvisionedPackage -package Microsoft.BingTravel_1.2.0.145_x64__8wekyb3d8bbwe -online

That would uninstall the Travel app. To remove Bing Map app, the command would be:

remove-AppxProvisionedPackage -package Microsoft.BingMaps_1.2.0.136_x86__8wekyb3d8bbwe -online

Microsoft.BingMaps_1.2.0.136_x86__8wekyb3d8bbwe is the app package name, which basically is the folder that you find in C:\Program Files\WindowsApps.

To uninstall apps installed from the Windows Store, the command is Remove-AppxPackage. It's syntax is as below:

Remove-AppxPackage PackageFullName

Note: Do not add -online parameter at the end of this command. [source]

Answer from Leo on Stack Exchange
🌐
Microsoft Support
support.microsoft.com › en-us › windows › uninstall-or-remove-apps-and-programs-in-windows-4b55f974-2cc6-2d2b-d092-5905080eaf98
Uninstall or remove apps and programs in Windows - Microsoft Support
In search on the taskbar, enter Control Panel and select it from the results. Select Programs > Programs and Features. Press and hold (or right-click) on the program you want to remove and select Uninstall or Uninstall/Change. Then follow the directions on the screen.
🌐
Reddit
reddit.com › r/windows11 › uninstalling apps from the microsoft store.
r/Windows11 on Reddit: Uninstalling apps from the Microsoft store.
February 19, 2025 -

Sorry if it sounds like a rant! It kind of is!

I have apps installed on my PC, and having started with computer from back in 1996, when i want to uninstall a program, i go to the Control Panel, and go to Uninstall Programs (Sorry if it's not the right term, i'm french!)

Not there!

Oh it's a "Metro UI" thing or what's it called. So i go to the Microsoft Store, in my library i find the app i want deleted, and NOPE. I can't do that...

I need to go in the Start Menu, search for the app, right click and from the Contextual Menu, then i can uninstall.

My suggestion: Consistency. Be consistent. Why change the way things have been done for decades, and worked perfectly. Why go against all basic IT instinct and make it cryptic and hard to uninstall an app?

There is NO excuse for the uninstall option to be absent from the Microsoft Store. And the excuses for not having those apps listed in the "legacy" uninstall programs windows is nothing but laziness.

Just make a list of the Microsoft Store Apps, inject it in the good old "Uninstall Program" list, and add a flag on them so that when we click on uninstall, the PC knows it's a Metro app or whatever it's called, and send the same command it would have sent if i had right-clicked it from the start menu.

I remember people hating Windows 8 for something as trivial as "The start menu is now full screen and left to right instead of Top to Bottom" And i defended it with all my might! It was light weight, stable, great OS, it worked in the same way as before, just presented differently it was a GREAT OS.

But people hate your product because you present them differently. Do not change how your product works fundamentally!

Discussions

how do I uninstall apps on the Microsoft store?
I have an alien ware computer and it doesn't even give me an option to uninstall when I click on the '...', the only options it gives me are to share, write a review, pin to task bar, or pin to start. More on learn.microsoft.com
🌐 learn.microsoft.com
1
32
May 3, 2024
How to turn off or disable copilot in windows 11 permanently?
Recently updated Windows 11 and noticed something called Copilot showing up on the taskbar and sometimes popping up when using the PC. It feels distracting... More on techcommunity.microsoft.com
🌐 techcommunity.microsoft.com
9
0
1 week ago
How To Uninstall Microsoft Store Apps | Techist - Tomorrow's Technology Today
I want to know the uninstallation process as my PC comes with several apps from the Microsoft Store installed out of the box, so tidying up my PC involves pruning those. More on techist.com
🌐 techist.com
September 18, 2020
How to completely remove or uninstall norton antivirus security on windows 11
I already uninstalled Norton Antivirus using the standard Windows "Add or Remove Programs" option, but I keep seeing leftover files, background services, and... More on techcommunity.microsoft.com
🌐 techcommunity.microsoft.com
7
0
1 day ago
🌐
Eleven Forum
elevenforum.com › windows support forums › tutorials
Uninstall Apps in Windows 11 | Windows 11 Forum
February 12, 2026 - (see screenshot below) 5 When finished, you can close the Control Panel if you like. ... This option is only available in Windows 11 build 26220.7271 (Dev and Beta 25H2). 1 Open the Microsoft Store app.
🌐
Microsoft Support
support.microsoft.com › en-us › topic › policy-based-removal-of-pre-installed-microsoft-store-apps-e1d41a92-b658-4511-95a6-0fbcc02b4e9c
Policy-Based Removal of Pre-installed Microsoft Store Apps - Microsoft Support
August 15, 2025 - A Windows 11 device with the Dev channel release. A Microsoft Entra account. Policy-Based Removal of Pre-installed Microsoft Store Apps is disabled by default for Microsoft Entra accounts. The new Remove Default Microsoft Store packages policy must be explicitly enabled, from MDM via OMA URI or by enabling the Group Policy via Configuration Manager.
🌐
LazyAdmin
lazyadmin.nl › home › how to uninstall microsoft store and the apps
How To Uninstall Microsoft Store and the Apps — LazyAdmin
June 23, 2021 - Install WPM by going into the Windows Store and install App Installer. Once installed, open Powershell and type in the command Winget · If correct you should see something like (sorry for the dutch): “Windows Package Manager v1.1.13405 Copyright (c) Microsoft Corporation. Alle rechten voorbehouden. Met het opdrachtregelprogramma WinGet kunnen toepassingen en andere pakketten worden geïnstalleerd vanaf de opdrachtregel.” · You are now able to uninstall apps.
🌐
Microsoft Learn
learn.microsoft.com › en-us › hololens › holographic-store-apps
Find, install, and uninstall applications | Microsoft Learn
There are two ways to uninstall applications. You can uninstall applications through the Start menu or from Settings. ... You can't uninstall a system app or the Microsoft Store.
🌐
Eleven Forum
elevenforum.com › windows support forums › apps and software
Has anyone removed the Microsoft store? | Windows 11 Forum
May 13, 2025 - This tutorial will show you how to enable or disable the automatic download and install of available app updates in the Microsoft Store for all users in Windows 10 and Windows 11. Microsoft redesigned the Microsoft Store app from the ground up in Windows 11, making space for more content...
Find elsewhere
Top answer
1 of 3
20

Built-in apps are called provisioned apps. They are scheduled to be installed for each new user that registers on a Windows 8 PC, so you can't uninstall them completely from the Start screen. To do so, you've to use Windows PowerShell command remove-AppxProvisionedPackage, like so:

remove-AppxProvisionedPackage -package Microsoft.BingTravel_1.2.0.145_x64__8wekyb3d8bbwe -online

That would uninstall the Travel app. To remove Bing Map app, the command would be:

remove-AppxProvisionedPackage -package Microsoft.BingMaps_1.2.0.136_x86__8wekyb3d8bbwe -online

Microsoft.BingMaps_1.2.0.136_x86__8wekyb3d8bbwe is the app package name, which basically is the folder that you find in C:\Program Files\WindowsApps.

To uninstall apps installed from the Windows Store, the command is Remove-AppxPackage. It's syntax is as below:

Remove-AppxPackage PackageFullName

Note: Do not add -online parameter at the end of this command. [source]

2 of 3
10

I had success with the following method. Press Win+X, select Command Prompt (Admin). Run the command

DISM.exe /Online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.BingTravel_1.2.0.145_x64__8wekyb3d8bbwe

Use folder names in the "C:\Program Files\WindowsApps" folder as package names.

Source: http://technet.microsoft.com/en-us/library/hh852635.aspx

To automate this process, I got a list of packages by running "dir /b". Then converted it into a batch file like this

@echo off
cd /d  C:\Program Files\WindowsApps
DISM.exe /Online /Remove-ProvisionedAppxPackage /PackageName:B9ECED6F.ASUSCalculator_1.0.0.18_neutral__qmba6cd70vzyy
DISM.exe /Online /Remove-ProvisionedAppxPackage /PackageName:B9ECED6F.AsusConverter_1.0.0.27_neutral__qmba6cd70vzyy
DISM.exe /Online /Remove-ProvisionedAppxPackage /PackageName:B9ECED6F.TheWorldClock_1.0.0.6_neutral__qmba6cd70vzyy
DISM.exe /Online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.Adera_1.0.0.4957_x86__8wekyb3d8bbwe
DISM.exe /Online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.BingFinance_1.2.0.135_x64__8wekyb3d8bbwe
....
pause

Run the batch file as Administrator. This removed all packages in WindowsApps directory: 34 folders, 1.5GB.

🌐
Windows Central
windowscentral.com › software apps
Microsoft Store gains a simple new way to uninstall apps
November 25, 2025 - At the moment, the Microsoft Store does not have shortcuts to uninstall apps from its library. (Image credit: Future) ... All the latest news, reviews, and guides for Windows and Xbox diehards.
Top answer
1 of 5
1
How to disable copilot Windows 11? You can try disabling it through the Taskbar settings and PowerShell commands. Here's a straightforward approach:1. Disable the Copilot App via PowerShell:Open PowerShell as an administrator. You can do this by searching for PowerShell, right-clicking it, and selecting "Run as administrator."Enter the following command to disable the Copilot app:Get-AppxPackage Microsoft.549981C3F5F10 | Remove-AppxPackageThis command removes the Copilot app from your system. If you ever want to re-enable it, you'll need to reinstall the app from the Microsoft Store. 2. Prevent Copilot from Popping Up:To prevent it from opening automatically, you can also disable the relevant task in Task Scheduler:Open Task Scheduler (search for it in the Start menu).Look for tasks related to Copilot or Microsoft Edge (if it integrates there).Right-click and choose Disable for those tasks. Note: If you are searching for how to disable copilot Windows 11. These methods do not involve editing the Registry or Group Policy and are reversible by reinstalling the app or enabling the task again. This approach should help you enjoy a more distraction-free Windows 11 experience without extra features like Copilot getting in your way.
2 of 5
1
If you're looking to disable Copilot Windows 11 by uninstalling the app itself, here's a straightforward way to do it. This method ensures that Copilot won't run or appear anymore. Please note that this approach is safe.How to disable Copilot Windows 11 by uninstalling the appStep 1: Open Settings   Press Windows key + I to open the Settings app.Step 2: Navigate to Apps   In the Settings window, select Apps from the sidebar.Step 3: Find the Copilot app   Click on Installed apps or Apps & features.   Scroll through the list or use the search box to find Windows Copilot or Copilot.Step 4: Uninstall the app   Click on Windows Copilot.   Select Uninstall.   Confirm the uninstallation if prompted.Step 5: Restart your PC   After uninstalling, restart your computer to ensure the changes take effect.Important notes:Uninstalling the app should disable Copilot from launching or appearing.If the Uninstall button is greyed out or unavailable, it may be embedded into Windows and might require more advanced steps, but for most users, this process works.This process is part of how to disable Copilot Windows 11 — by removing the app completely, you ensure it won't interfere or distract you anymore.
🌐
Techist
techist.com › forums › software | operating systems and programming › general software and os topics
How To Uninstall Microsoft Store Apps | Techist - Tomorrow's Technology Today
September 18, 2020 - The apps in the start menu you can right click and uninstall. The others that don't give you an uninstall option you can unpin. Some things you chose to uninstall via the apps settings panel or in the Windows Store Windows will sometimes reinstall them later.
🌐
Microsoft Support
support.microsoft.com › en-us › office › uninstall-microsoft-365-or-office-from-a-pc-9dd49b83-264a-477a-8fcc-2fdf5dbf61d8
Uninstall Microsoft 365 or Office from a PC - Microsoft Support
Note: If Microsoft 365 isn't listed ... To reinstall Microsoft 365 see Install or reinstall Office on a PC. Press the Windows logo key (or select the search bar on the taskbar) and type control panel....
🌐
Google Play
play.google.com › store › apps › details
Microsoft Outlook - Apps on Google Play
Microsoft Outlook Includes: Inbox, Contacts and Files • Manage Gmail, Yahoo Mail, iCloud and more in one place • Access recent attachments and connect to Word, Excel, PowerPoint and OneNote • Organize email with filters, folders and spam protection Planning and Calendar Management • View multiple calendars side by side • Join online meetings from Teams and Zoom • RSVP to invites and add notes • Keep your week organized with tasks and reminders Productivity and Task Tools • Group conversations by thread • Use voice to find emails, events, people and files • Suggested replies
Rating: 4.2 ​ - ​ 10.5M votes
🌐
Microsoft Community Hub
techcommunity.microsoft.com › microsoft community hub › communities › products › windows › windows insider program
How to completely remove or uninstall norton antivirus security on windows 11 | Microsoft Community Hub
1 day ago - I already uninstalled Norton Antivirus using the standard Windows "Add or Remove Programs" option, but I keep seeing leftover files, background services, and...
🌐
Microsoft Learn
learn.microsoft.com › en-us › windows › package-manager › winget
Use WinGet to install and manage applications | Microsoft Learn
1 week ago - The WinGet command line tool enables developers to discover, install, upgrade, remove and configure applications on Windows computers.
🌐
GitHub
github.com › ionuttbara › windows-defender-remover
GitHub - ionuttbara/windows-defender-remover: A tool which is uses to remove Windows Defender in Windows 8.x, Windows 10 (every version) and Windows 11. · GitHub
$remove_appx = @("SecHealthUI"); $provisioned = get-appxprovisionedpackage -online; $appxpackage = get-appxpackage -allusers; $eol = @() $store = 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Appx\AppxAllUserStore' $users = @('S-1-5-18'); if (test-path $store) {$users += $((dir $store -ea 0 |where {$_ -like '*S-1-5-21*'}).PSChildName)} foreach ($choice in $remove_appx) { if ('' -eq $choice.Trim()) {continue} foreach ($appx in $($provisioned |where {$_.PackageName -like "*$choice*"})) { $next = !1; foreach ($no in $skip) {if ($appx.PackageName -like "*$no*") {$next = !0}} ; if ($next) {conti
Starred by 7.5K users
Forked by 479 users
Languages   Batchfile 64.3% | PowerShell 35.7%
🌐
GitHub
github.com › raphire › win11debloat
GitHub - Raphire/Win11Debloat: A simple, lightweight PowerShell script that allows you to remove pre-installed apps, disable telemetry, as well as perform various other changes to declutter and customize your Windows experience. Win11Debloat works for both Windows 10 and Windows 11. · GitHub
2 weeks ago - Hide the 'All Apps' section in the start menu. Disable the Phone Link mobile devices integration in the start menu. Disable Bing web search & Copilot integration in Windows search. Disable Microsoft Store app suggestions in Windows search.
Starred by 43.1K users
Forked by 1.7K users
Languages   PowerShell 99.2% | Batchfile 0.8%
🌐
Patch My PC
patchmypc.com › home › blog › remove built in windows apps: clean up without the chaos remove built in windows apps: clean up w… remove built in windows apps: clean up without the chaos
Remove Built-In Windows Apps: Clean Up Without the Chaos - Patch My PC
October 3, 2025 - Sure, PowerShell commands like Get-AppxPackage -AllUsers and Remove-AppxPackage make it simple to uninstall those unwanted Windows apps, but not all apps or services should be tampered with.
🌐
Python
docs.python.org › 3 › using › windows.html
4. Using Python on Windows — Python 3.14.3 documentation
To download the Python install manager and install on another machine, the following WinGet command will download the required files from the Store to your Downloads directory (add -d <location> to customize the output location). This also generates a YAML file that appears to be unnecessary, as the downloaded MSIX can be installed by launching or using the commands below. $> winget download 9NQ7512CXL7T -e --skip-license --accept-package-agreements --accept-source-agreements · To programmatically install or uninstall an MSIX using only PowerShell, the Add-AppxPackage and Remove-AppxPackage PowerShell cmdlets are recommended: