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 pin comments on TikTok

How to pin comments on TikTok

How to pin comments on TikTok, TikTok allows users to pin comments easily. Here's how to pin comments on TikTok videos.

Instructions for Organizing a Q&A session on Facebook

Instructions for Organizing a Q&A session on Facebook

Instructions for Organizing a Q&A session on Facebook, Recently, Facebook has launched the feature to create a Q&A session, when you post a question for everyone to answer.

Instructions for installing and recording videos with Likee

Instructions for installing and recording videos with Likee

Instructions for installing and recording videos with Likee, Likee is an application that supports extremely beautiful and impressive video recording, and is loved by many young people today. The following,

How to export the list of meeting participants in Zoom

How to export the list of meeting participants in Zoom

How to export the list of meeting participants in Zoom, How to take attendance on Zoom is not difficult, it even allows you to export the list of students participating in the class.

How to change font on Xiaomi

How to change font on Xiaomi

How to change font on Xiaomi, Want to create a new image for Xiaomi device? Just follow the instructions below to change the font style and size above

Instructions for creating a mirror image effect on Picsart

Instructions for creating a mirror image effect on Picsart

Instructions for creating a mirror image effect on Picsart, Picsart is an application where users only need to perform a few simple steps to transform the photo.

How to add new fonts to Microsoft Word

How to add new fonts to Microsoft Word

How to add new fonts to Microsoft Word, Can't find the font you want to use for documents in Microsoft Word? Don't worry, you can install new fonts for Word according to these steps

How to turn off the computer screen and still keep the computer running

How to turn off the computer screen and still keep the computer running

How to turn off the computer screen and still have the computer running, How to turn off the PC screen and still have the computer running on Win 10/11? Very simple. Here's how to turn off the computer screen

How to fix facebook error logging in 3/2024

How to fix facebook error logging in 3/2024

To fix the “An unexpected error occurred” issue when logging in to Facebook, you can try the following steps

Cant access Facebook, Messenger and Instagram, how to fix it immediately

Cant access Facebook, Messenger and Instagram, how to fix it immediately

Users reported that their Facebook, Messenger and Instagram accounts were suddenly logged out and could not be accessed again, both on the app and web version.

Instructions on how to take photos on Tiktok are extremely simple

Instructions on how to take photos on Tiktok are extremely simple

Instructions on how to take photos on Tiktok are extremely simple. Tiktok is a famous application for recording and creating short videos on social networks. However, this application also

How to find and get Instagram links

How to find and get Instagram links

How to find and get Instagram links, Instagram is one of the most popular and easy-to-use social networking platforms today. However, because it is designed specifically for mobile,

Instructions for locking the mouse cursor when playing games on BlueStacks

Instructions for locking the mouse cursor when playing games on BlueStacks

Instructions for locking the mouse cursor when playing games on BlueStacks, Instructions for turning on/off the mouse cursor lock feature when playing games in the BlueStacks App Player emulator.

Instructions for installing and using Faceapp using an emulator on PC

Instructions for installing and using Faceapp using an emulator on PC

Instructions for installing and using Faceapp using an emulator on PC, Simple and easy instructions on how to install and use the Faceapp face editing app using an emulator on PC

Instructions for creating a cover photo group on Facebook

Instructions for creating a cover photo group on Facebook

Instructions for creating a cover photo group on Facebook, Creating a cover photo group is a feature that helps users set Facebook cover photos with many different images (maximum of 6 photos).

Mastering Technical Analysis with the Stochastic Indicator on Bubinga

Mastering Technical Analysis with the Stochastic Indicator on Bubinga

Learn how to effectively use the Stochastic Indicator for technical analysis on Bubinga. Explore advanced techniques to enhance your trading strategies

Instructions for adding angel wings to photos using PicsArt

Instructions for adding angel wings to photos using PicsArt

Instructions for adding angel wings to photos using PicsArt, PicsArt is a photo editing application used by many people today. Today WebTech360 will introduce the article

How to turn off the Just accessed notification on Zalo

How to turn off the Just accessed notification on Zalo

How to turn off the Just accessed notification on Zalo. This article WebTech360 will guide you to turn off the Just accessed notification under your Zalo chat name.

Instructions for blocking and unblocking accounts on TikTok

Instructions for blocking and unblocking accounts on TikTok

Instructions for blocking and unblocking accounts on TikTok. Similar to other social networking applications, TikTok also allows users to block someone's account

How to write a long status with a colorful background on Facebook

How to write a long status with a colorful background on Facebook

How to write a long status with a colorful background on Facebook, Today, WebTech360 will introduce some steps to post a long status with a colorful background on Facebook,