How to uninstall Windows 10 apps using PowerShell, in 3 steps

Windows 10 comes with quite a few pre-installed universal apps, such as Calendar, Mail, Camera, or Photos. While some people like them and find them useful, others do not. If you do not want some of these bundled apps on your Windows 10 device, you might be wondering if they can be removed from your system. While a few of the built-in apps can be uninstalled by right clicking on them and selecting the Uninstall option, some of them do not offer this option. That is because Microsoft considers them to be core apps, required by Windows 10 to offer you Microsoft's intended user experience. Here is how to use PowerShell to remove Windows 10 apps that you do not want:

Contents

  1. Step 1. Open PowerShell as an administrator
  2. Step 2. Find the full package name of the Windows 10 app that you want to uninstall
  3. Step 3. Uninstall the Windows 10 app using PowerShell
  4. The uninstall commands for Windows 10 core apps
  5. Which Windows 10 default apps did you eliminate?

Step 1. Open PowerShell as an administrator

First of all, you have to launch PowerShell as an administrator. However, if you are in a hurry and you do not want to read another article, a fast way to launch PowerShell as administrator is to type "powershell" in Cortana's search box, right-click or tap and hold "Windows PowerShell" and then click or tap "Run as administrator."

How to uninstall Windows 10 apps using PowerShell, in 3 steps

Search and start PowerShell în Windows 10

If a User Account Control notification pops up, approve the execution of PowerShell by clicking or tapping Yes.

How to uninstall Windows 10 apps using PowerShell, in 3 steps

User Account Control notification for running PowerShell as admin

Once PowerShell is launched, you should see a window similar to the one in the image below.

How to uninstall Windows 10 apps using PowerShell, in 3 steps

PowerShell in Windows 10

Step 2. Find the full package name of the Windows 10 app that you want to uninstall

To uninstall Windows 10 built-in apps, you have to run a specific command for each of these apps.

The problem is that, for you to properly run this command, you have to know the full package name of the app that you want to uninstall. To find out its name, you first have to list all the apps installed on your Windows 10 computer. For PowerShell to show you this list, run the following command and press Enter: Get_-AppxPackage_."

How to uninstall Windows 10 apps using PowerShell, in 3 steps

The Get-AppxPackage command in PowerShell

PowerShell starts displaying the apps installed on your Windows 10 computer.

How to uninstall Windows 10 apps using PowerShell, in 3 steps

The output of the Get-AppxPackage command in PowerShell

Scroll through PowerShell to find the app that you want to be uninstalled. You can quickly identify it by looking at the Name field of each of the apps from the list. For instance, the Camera app bears the name of "Microsoft.WindowsCamera."

How to uninstall Windows 10 apps using PowerShell, in 3 steps

The Microsoft Windows Camera app from Windows 10

Alternatively, you can search for the name of the app using the Find tool from PowerShell: right-click on the title bar of the Powershell window, and go to "Edit -> Find."

How to uninstall Windows 10 apps using PowerShell, in 3 steps

The Find command in PowerShell

Type in the text that it is part of the app's name (in our case "camera") and click or tap Find Next until you get the name of the app that you are searching for.

How to uninstall Windows 10 apps using PowerShell, in 3 steps

Finding an app's name in PowerShell

However, to be able to run the uninstall command, you need not the Name of the app, but the PackageFullName. Copy it to the clipboard or write it down and move to the next section of this tutorial.

How to uninstall Windows 10 apps using PowerShell, in 3 steps

The PackageFullName of a Windows 10 app

Step 3. Uninstall the Windows 10 app using PowerShell

The PowerShell command you must run to remove a Windows 10 app is this: "Remove-AppxPackage [App Name]."

In the above command model, you should replace "[App Name]" with the full package name of the app you want to remove, the one you noted in the previous section of this tutorial. For instance, if you want to remove the Camera app, you should run a command similar to this one: "Remove-AppxPackage Microsoft.WindowsCamera_5.54.3002.0_x64__8wekyb3d8bbwe"

How to uninstall Windows 10 apps using PowerShell, in 3 steps

The Remove-AppxPackage command in PowerShell

Fortunately though, to make things simpler, Powershell allows us to use keywords for the app names and this is what we will show you in the next section. We list the PowerShell commands that you need to run to uninstall the apps that are bundled with Windows 10.

The uninstall commands for Windows 10 core apps

This is the list of PowerShell commands you need to run in order to uninstall the universal apps that are preinstalled in Windows 10:

  • Uninstall 3D Builder: Get_-AppxPackage *3dbuilder* | Remove-AppxPackage_
  • Uninstall ACG Player: Get-AppxPackage *acg* | Remove-AppxPackage
  • Uninstall Alarms and Clock: Get-AppxPackage *alarms* | Remove-AppxPackage
  • Uninstall Calculator: Get-AppxPackage *calculator* | Remove-AppxPackage
  • Uninstall Calendar and Mail: Get-AppxPackage *communications* | Remove-AppxPackage
  • Uninstall Camera: Get-AppxPackage *camera* | Remove-AppxPackage
  • Uninstall Dolby Access: Get-AppxPackage *dolbyaccess* | Remove-AppxPackage
  • Uninstall Fitbit Coach: Get-AppxPackage *fitbitcoach* | Remove-AppxPackage
  • Uninstall Get Office: Get-AppxPackage *officehub* | Remove-AppxPackage
  • Uninstall Get Skype: Get-AppxPackage *skypeapp* | Remove-AppxPackage
  • Uninstall Get Started: Get-AppxPackage *getstarted* | Remove-AppxPackage
  • Uninstall Groove Music: Get-AppxPackage *zunemusic* | Remove-AppxPackage
  • Uninstall Maps: Get-AppxPackage *maps* | Remove-AppxPackage
  • Uninstall Microsoft Solitaire Collection: Get-AppxPackage *solitairecollection* | Remove-AppxPackage
  • Uninstall Money: Get-AppxPackage *bingfinance* | Remove-AppxPackage
  • Uninstall Movies & TV: Get-AppxPackage *zunevideo* | Remove-AppxPackage
  • Uninstall News: Get-AppxPackage *bingnews* | Remove-AppxPackage
  • Uninstall OneNote: Get-AppxPackage *onenote* | Remove-AppxPackage
  • Uninstall People: Get-AppxPackage *people* | Remove-AppxPackage
  • Uninstall Phone Companion: Get-AppxPackage *windowsphone* | Remove-AppxPackage
  • Uninstall Phototastic Collage: Get-AppxPackage *phototastic* | Remove-AppxPackage
  • Uninstall Photos: Get-AppxPackage *photos* | Remove-AppxPackage
  • Uninstall PicsArt: Get-AppxPackage *picsart* | Remove-AppxPackage
  • Uninstall Plex: Get-AppxPackage *plex* | Remove-AppxPackage
  • Uninstall Store: Get-AppxPackage *windowsstore* | Remove-AppxPackage
  • Uninstall Sports: Get-AppxPackage *bingsports* | Remove-AppxPackage
  • Uninstall Voice Recorder: Get-AppxPackage *soundrecorder* | Remove-AppxPackage
  • Uninstall Weather: Get-AppxPackage *bingweather* | Remove-AppxPackage
  • Uninstall Xbox: Get-AppxPackage *xbox* | Remove-AppxPackage

Each time you run an uninstall command, PowerShell shows you a progress bar similar to the one below.

How to uninstall Windows 10 apps using PowerShell, in 3 steps

Using the Remove-AppxPackage command in PowerShell

When the process is done, the PowerShell window removes the uninstall progress information from the screen, and return the control to the command line.

How to uninstall Windows 10 apps using PowerShell, in 3 steps

Removing an app in PowerShell with Remove-AppxPackage

Which Windows 10 default apps did you eliminate?

As you've seen, uninstalling all the Windows 10 built-in universal apps can be done, even if it requires a few advanced PowerShell commands. If you do not want or need these apps, you can remove them in just a couple of minutes. If you changed your mind and want them back, read this tutorial: How to reinstall all the Windows 10 default apps with PowerShell. Which Windows 10 default apps do you want to eliminate? Let us know by leaving a comment below.

Sign up and earn $1000 a day ⋙

How To Access An Android Phone With A Broken Screen

How To Access An Android Phone With A Broken Screen

Dealing with a broken screen on your Android phone is a hassle. Although phone screens are pretty tough, one nasty drop can shatter them completely. Given that most people have a lot of irreplaceable content on their phones, it is

Find out how to find friends and family using online services

Find out how to find friends and family using online services

In today's world, where information is more accessible than ever before, finding long-lost friends or relatives has become much easier. Online services for finding people provide convenient and effective tools that allow you to restore lost connections.

IObit Uninstaller 13 - One Click to Uninstall All Unwanted Programs

IObit Uninstaller 13 - One Click to Uninstall  All Unwanted Programs

In the busy software utilities industry, the available uninstallation tools are often overshadowed by more glamorous alternatives. Nonetheless, an excellent way of removing programs on a PC is vital for optimal system performance and the elimination of unwanted applications.

Instructions for creating Moon phase trend

Instructions for creating Moon phase trend

Instructions for creating a Moon phase trend. The Moon trend is extremely popular on TikTok, creating an unprecedented fever. Through Moon phase will help you know the date

How to edit videos posted on YouTube without losing views

How to edit videos posted on YouTube without losing views

How to edit videos posted on YouTube without losing views, You forgot to blur sensitive content in videos posted on YouTube. Don't worry, here's how to adjust it

How to enable dark mode on TikTok

How to enable dark mode on TikTok

How to turn on dark mode on TikTok, How to turn on dark mode on TikTok is not difficult. The article will guide you in detail how to change the TikTok interface to black on Samsung

Shirt size chart - How to choose the most accurate shirt size

Shirt size chart - How to choose the most accurate shirt size

Shirt size chart - How to choose the most accurate shirt size, What is the shirt size chart? Shirt size means only the size and size of the shirt or pants. Shirt size varies according to direction

Instructions for drawing prizes to receive Lucky Money on ZaloPay

Instructions for drawing prizes to receive Lucky Money on ZaloPay

Instructions for drawing prizes to receive Lucky Money on ZaloPay. Recently, Zalo has launched the program "Amazing lucky money, Happy Spring Luck" taking place from January 29, 2021 to

How to view and recover Microsoft Outlook password

How to view and recover Microsoft Outlook password

How to view and recover Microsoft Outlook password, How to view Outlook password on computer is not difficult. This article will guide you how to view and recover Outlook password

Instructions for creating and searching for draft posts on Facebook

Instructions for creating and searching for draft posts on Facebook

Instructions for creating and searching for draft articles on Facebook. Currently, we can save articles that we have created but have not yet posted on Facebook. Here, WebTech360 invites

How to set up LibreOffice Writer to work like Microsoft Word

How to set up LibreOffice Writer to work like Microsoft Word

How to set up LibreOffice Writer to work like Microsoft Word, If you're planning to switch from Microsoft Word to LibreOffice Writer but want a similar experience

Instructions for turning off saving videos on TikTok are extremely simple

Instructions for turning off saving videos on TikTok are extremely simple

Instructions for turning off saving videos on TikTok are extremely simple, to help people block others from downloading and saving their videos simply and easily. So today, WebTech360

Instructions for creating genealogical and organizational charts on Google Sheets

Instructions for creating genealogical and organizational charts on Google Sheets

Instructions for creating genealogical charts and organizing them on Google Sheets. Google Sheets is an online office application that helps us easily edit online spreadsheets,

How to import and manage multiple email accounts in Gmail

How to import and manage multiple email accounts in Gmail

How to import and manage multiple email accounts in Gmail, Want to manage all emails in Gmail? Let's learn how to manage and add multiple accounts with WebTech360

Instructions for using Photoshop filters for beginners

Instructions for using Photoshop filters for beginners

Instructions for using Photoshop filters for beginners, Each filter in Photoshop has its own algorithm and uses. Below are instructions for using the internal filter

How to create automatic clicks on Macrorify

How to create automatic clicks on Macrorify

How to create automatic clicks on Macrorify, Macrorify helps you create automatic click tasks and detect images. In this article, let's find out how with WebTech360

Instructions for logging out of Instagram account remotely

Instructions for logging out of Instagram account remotely

Instructions for remotely logging out of your Instagram account. If you don't know how to remotely log out of your Instagram account, today WebTech360 would like to introduce

Instructions for remotely logging out of Tik Tok account

Instructions for remotely logging out of Tik Tok account

Instructions for remotely logging out of Tik Tok account. To help people quickly log out of Tik Tok accounts from other devices, today WebTech360

Instructions for blurring photos on B612

Instructions for blurring photos on B612

Instructions for blurring photos on B612. Recently, the B612 application has updated the image blur effect. Next, WebTech360 will introduce the article Instructions for blurring photos

How to fix the error of printing blank pages in Microsoft Excel

How to fix the error of printing blank pages in Microsoft Excel

How to fix the error of printing blank pages in Microsoft Excel. Why do some Excel documents not display data or contain blank pages when printed? Below are the reasons