Remove Preinstalled Apps using PowerShell from Windows 10 & 11

Windows 10 comes with a lot of pre-loaded or preinstalled Microsoft apps while Windows 11 comes with little less. These apps might be really useful for some users while of no use for others. But they certainly consume your precious data in the background unless you remove those preinstalled or preloaded Microsoft Apps from your Windows 10 or 11 using Apps Settings or PowerShell.

Can you uninstall these preloaded Microsoft Apps? The answer is both Yes and No. Using the Settings page (Settings > Apps > Apps & features), you can remove some of the pre-installed apps but not all of them. Some of the pre-installed Microsoft Apps can’t be uninstalled graphically. This is where PowerShell comes to the rescue. You can uninstall all preinstalled apps on Windows 10 and 11 using PowerShell.

Uninstall Preloaded Microsoft Apps from Windows 10 and 11 using PowerShell

So, if data consumption is not a concern for you, you can try moving your Microsoft apps to another drive from C or changing the default save location to D or some other drive. But again you can’t move all of them.

However, you can uninstall or remove those stubborn preinstalled apps including the Microsoft Store App using PowerShell. But we recommend that you don’t uninstall it. So, here is how you can remove preloaded Windows 10 or 11 Apps using PowerShell.

Step 1: Launch PowerShell with Administrator Rights

First of all, open PowerShell with Administrator rights. You can also try Windows Terminal which opens PowerShell by default. But in this tutorial, we are using PowerShell.

So, search powershell on Start and select Run as Administrator under PowerShell. Click Yes when you see the UAC prompt. This will open PowerShell with administrator privileges.

Open Powershell With Administrator Rights In Windows 11 Or Windows 10
Open PowerShell with Administrator Rights

SEE ALSO: How to Open CMD or PowerShell in Current Folder in Windows?


Step 2: Get the List of Preinstalled Microsoft Apps using PowerShell

Before we start removing the preinstalled Microsoft Apps, let’s see the list of all installed apps. So, run the following command in PowerShell to get the list of all preinstalled Windows 10 Apps:

Get-AppxPackage | Select Name, PackageFullName

You will get a list of all Microsoft Apps that are installed in your Windows 10 or 11 PC. The list will also show full package names with the names of the Apps. So now, we can use full package names for uninstalling these apps using PowerShell.

Get The List Of All Preinstalled Microsoft Store Apps
The list of all preinstalled Microsoft Apps

Step 3: Uninstall Microsoft Apps using PowerShell

Now, for uninstalling the App package, you need to note down the name of the package. After that, we can use the Remove-AppxPackage command with the package name to uninstall it.

You can also use wildcard characters to match the package name. For example, if you want to uninstall the 3D Builder app, you can use the following command (while the full package name for the 3D Builder app is Microsoft.3DBuilder_13.0.10349.0_x64__8wekyb3d8bbwe):

Get-AppxPackage *3dbuilder* | Remove-AppxPackage

Where *3dbuilder* is part of the package name for the 3D Builder application.

Remove 3d Builder Microsoft Store App Using Powershell
Remove Microsoft Apps using PowerShell

Please note that using the above PowerShell command will remove preinstalled Microsoft Apps from your profile only. If you want to uninstall them from all users, then you have to use the -allusers switch after Get-AppxPackage. Here is an example:

Get-AppxPackage -allusers *3dbuiler* | Remove-AppxPackage

The above command will remove the selected App from all user profiles in Windows 10 or Windows 11.

SEE ALSO: How to Uninstall Programs using Command Prompt in Windows 10 and 11?


Step 4: Remove All Microsoft Apps using PowerShell

You can also uninstall all preinstalled Apps from Windows 10 or 11 using a single PowerShell command but it is not recommended as it might delete some useful apps also. If you are certain to delete all Microsoft Apps in one go, run the following command in PowerShell:

Get-AppxPackage | Remove-AppxPackage

So, if you wish to uninstall the preloaded apps one by one, here is the list of commands for uninstalling some common Windows Apps. Make sure to check for PackageFullName before uninstalling any app to avoid deleting any useful apps.

App NamePowerShell Command
3D BuilderGet-AppxPackage *3dbuilder* | Remove-AppxPackage
Alarms & ClockGet-AppxPackage *alarms* | Remove-AppxPackage
App ConnectorGet-AppxPackage *appconnector* | Remove-AppxPackage
Calendar and Mail AppsGet-AppxPackage *communicationsapps* | Remove-AppxPackage
CalculatorGet-AppxPackage *calculator* | Remove-AppxPackage
CameraGet-AppxPackage *camera* | Remove-AppxPackage
Feedback HubGet-AppxPackage *feedback* | Remove-AppxPackage
Get OfficeGet-AppxPackage *officehub* | Remove-AppxPackage
Get Started or TipsGet-AppxPackage *getstarted* | Remove-AppxPackage
Get SkypeGet-AppxPackage *skypeapp* | Remove-AppxPackage
Groove MusicGet-AppxPackage *zunemusic* | Remove-AppxPackage
Groove Music and Movies & TV appsGet-AppxPackage *zune* | Remove-AppxPackage
MapsGet-AppxPackage *maps* | Remove-AppxPackage

SEE ALSO: How to Disable Automatic App Updates in Microsoft Store in Windows 10 and 11?

Remove Windows 10 and Windows 11’s Preloaded Apps with Ease

Uninstalling preinstalled Windows 10 Apps is quite simple using the PowerShell method. You can also use the graphical user interface (GUI) to uninstall Windows 10 Apps but it is limited to some third-party apps only. You can’t uninstall all preloaded apps using the GUI method. However, the PowerShell method can remove any or all preinstalled Microsoft Apps from your Windows 10 or 11 PC.

Hope you liked this tutorial. In case you face any issues following any of the steps above, feel free to write them down in the comments below.

Editorial Staff

Hi there, we are the editorial staff at WINDOSPC (former HELLPC). We are a team of funny and technical people. Feel free to get in touch with us via Contact-Us page.

Leave a Reply

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

This site uses Akismet to reduce spam. Learn how your comment data is processed.