Microsoft continues its long history of including a lot of apps we don’t need in Windows 11. It’s sometimes called bloatware. So enterprising people continue their long history of finding ways to remove default Microsoft apps on Windows 11/10. Why? Because fewer unnecessary apps in Windows 11 make for a faster Windows 11.

How To Remove Default Microsoft Apps in Windows 11/10 image

Remove Default Microsoft Apps from the Start Menu

Maybe you don’t want to uninstall the default Windows apps, but would just rather not see them in the Start Menu. It’s a simple process to unpin Windows apps.

Table of Contents

    Open the Start Menu, right-click on the app and select Unpin from Start. The app disappears from the Start Menu.

    Remove Default Microsoft Apps from the Start Menu image

    Uninstall Microsoft Apps in Windows 11 via Start Menu

    Perhaps the simplest way to uninstall Microsoft apps is to do it from the Start Menu.

    1. Select the Start Menu, find the app you want to delete, right-click on it, and select Uninstall.
    Uninstall Microsoft Apps in Windows 11 via Start Menu image
    1. Windows will ask you to confirm that you want to uninstall it. Select Uninstall and the app is removed.
    Uninstall Microsoft Apps in Windows 11 via Start Menu image 2

    Uninstall Microsoft Apps in Windows 11 via Settings

    When you want to uninstall several apps, this is a good point-and-click method.

    1. Select the Start Menu and start typing remove. There’s no need to click in the search bar or select the Search tool in the taskbar. Just start typing. Select Add or remove programs from the results. 
    Uninstall Microsoft Apps in Windows 11 via Settings image
    1. Settings will open to the Apps & features area. Find the app to be removed, right-click on it, and select Uninstall.
    Uninstall Microsoft Apps in Windows 11 via Settings image 2
    1. Windows will ask you to confirm that you want to uninstall the app. Select Uninstall.
    Uninstall Microsoft Apps in Windows 11 via Settings image 3

    There’ll be a progress bar as the app is uninstalled and it will say Uninstalled when finished.

    Uninstall Microsoft Apps in Windows 11 via Settings image 4

    Uninstall Microsoft Apps in Windows 11 via Control Panel

    Yes, the Control Panel is still in Windows 11. It’s not as handy for removing everything as it was in previous versions. Programs can still be uninstalled through this method, however, Universal Windows Platform (UWP) apps won’t even show up here. UWP apps are the ones you most likely want to uninstall. 

    1. Select the Start Menu and start typing controlSelect Control Panel from the results.
    Uninstall Microsoft Apps in Windows 11 via Control Panel image
    1. When the Control Panel window opens, look for Programs and select Uninstall a program below it.
    Uninstall Microsoft Apps in Windows 11 via Control Panel image 2
    1. In the Uninstall or change a program window, select the program to remove and then select Uninstall.
    Uninstall Microsoft Apps in Windows 11 via Control Panel image 3

    Windows will show the User Account Control (UAC) window asking, “Do you want to allow this app to make changes to your device?” Select Yes. Depending on the size of the program, it may take a few minutes until the program is gone.

    Uninstall Microsoft Apps in Windows 11 via Control Panel image 4

    Uninstall Microsoft Apps In Windows 11 Via PowerShell

    Even home users can learn PowerShell and have greater control over Windows. Building a PowerShell script to uninstall Microsoft apps will give you the most control over what gets removed. It also makes removing a bunch of Microsoft apps a quick and easy task, so save the script for the next time you install Windows 11.

    If creating a PowerShell script is more than you bargained for, yet still want that kind of speed and control, skip to the scripting section below.

    1. Select the Start Menu and start typing powershell. Select the PowerShell ISE option and open it as Administrator.
    Uninstall Microsoft Apps In Windows 11 Via PowerShell image
    1. Once it is open, enter and run the cmdlet Set-ExecutionPolicy RemoteSigned.
    Uninstall Microsoft Apps In Windows 11 Via PowerShell image 2

    When asked if you really want to change the execution policy, select Yes to All. This will allow you to run the scripts you make.

    Uninstall Microsoft Apps In Windows 11 Via PowerShell image 3
    1. First you need to get the package names for the Windows apps. Create a script and save it with a name like get-InstalledApps.ps1. Copy and paste the following cmdlets into the new script. They will create and save a list of the Name, and PackageFullName of UWP apps installed. Comment lines in the image beginning with a # explain what the cmdlets under it do.
    • Get-AppXPackage |`
    • Select-Object -Property Name, PackageFullName |`
    • Export-Csv “$PSScriptRoot\Windows-apps.csv”
    Uninstall Microsoft Apps In Windows 11 Via PowerShell image 4
    1. Open the resulting text file. A good rule of thumb for what to remove from this file is to delete any lines that you’re not sure what it is or that has “neutral” in the PackageFullName. This will leave only those things that you are certain you want to uninstall. If you’re not sure what to do here, move on to the next section of the article.
    Uninstall Microsoft Apps In Windows 11 Via PowerShell image 5
    1. Create another script and name it uninstall-WindowsApps.ps1. Use the following cmdlets to uninstall only the Windows apps that remain in the text file. Comment lines in the image beginning with a # explain what the cmdlets under it do.
    • $unwantedApps = import-CSV “$PSScriptRoot\Windows-apps.csv”
    • $unwantedApp variable
    • foreach($unwantedApp in $unwantedApps){
    • Get-AppXPackage $unwantedApp.name | Remove-AppXPackage -WhatIf
    • }
    Uninstall Microsoft Apps In Windows 11 Via PowerShell image 6

    When you’re ready, remove the -WhatIf parameter and run the script. The apps will be uninstalled.

    Uninstall Microsoft Apps In Windows 11 Via PowerShell image 7

    Uninstall Microsoft Apps In Windows 11 Via Scripts

    There are a few pre-made scripts that can be used to remove unwanted Microsoft apps. Two of the most popular are Windows 10 Decrapifier and Windows 10 Debloater. Both do similar things and both work in Windows 11, however we’ll only look at Windows 10 Debloater here, as it has a graphical user interface (GUI) option that you may find more helpful to use.

    1. Go to the Windows 10 Debloater page and select the Code button, then select Download ZIP.
    Uninstall Microsoft Apps In Windows 11 Via Scripts image
    1. Once the zip file is downloaded, extract it. Find Windows10DebloaterGUI and run it.
    Uninstall Microsoft Apps In Windows 11 Via Scripts image 2
    1. Some script will run and then the Windows10Debloater GUI will open. There’s several options here, however the quickest, simplest one to use is REMOVE ALL BLOATWARE.
    Uninstall Microsoft Apps In Windows 11 Via Scripts image 3

    Once selected, you’ll see the script running in the background removing a lot of things. This can take a few minutes.The only notification that it’s done is the script stops scrolling and the last line is Finished all tasks. All the unwanted Microsoft apps are gone.

    Uninstall Microsoft Apps In Windows 11 Via Scripts image 4

    How to Restore Default Microsoft Apps in Windows 11

    Great, you cleared out all the bloat and default Microsoft apps. But what if you need them back? You could go through the Microsoft Store and reinstall them one by one. However, the simplest and quickest way is with a single line of PowerShell.

    1. Create another script and name it restore-WindowsApps.ps1. Run the following cmdlets to restore the default Microsoft apps. Comment lines in the image beginning with a # explain what the cmdlets under it do.

    Get-AppXPackage -AllUsers | foreach {Add-AppXPackage – Register “$($_.InstallLocation)\appxmanifest.xml” -DisableDevelopmentMode}

    How to Restore Default Microsoft Apps in Windows 11 image
    1. All the default Microsoft Apps that your Windows version normally has are installed.
    How to Restore Default Microsoft Apps in Windows 11 image 2

    Windows 11 and Default Apps 

    Unnecessary default apps have always been a part of Windows and, to be fair, most operating systems. Now you know how to take care of that. Do you use any other methods like Chocolatey package manager? Which is your favorite? We love hearing about new things from you. Let us know.

    Leave a Reply

    Your email address will not be published. Required fields are marked *