Windows 10 has several innovative and useful built in Apps like People, Mail, Windows Store, Zune Music, Videos etc. While some apps are mandatory, like the Mail, Windows Store, there are many apps which you may not be using that frequently. If you don’t want to keep any app that is not of use to you, then you can uninstall them using Commands. While a straight forward uninstall option is not available for the default Apps, but PowerShell will do the job for you.

Steps to Remove Default Apps Using PowerShell in Windows 10

1. First of all, open the Search bar and type PowerShell. Right click on PowerShell and choose Run As Administrator.

powershell-admin

2. Your next step is to find the name of the App Package. Type the following command and hit Enter.

Get-AppxPackage -User username. You have to replace the username bu your own username.

get-app-package

3. You will get a long result containing details of all app packages. Find out the Fullname of the Package you want to uninstall. Check out the screenshot for better understanding. Copy the Package Name.

zune-music

4. Now type the following command Remove-AppxPackage [App Package Name]. Replace [App Package Name] by the Actual package name as shown in PowerShell results. For example, I want to uninstall the ZuneMusic App. Check out the screenshot to understand.

app-pack-del

It’s done!

5. Now if you want to

Uninstall all apps for a user, type Get-AppxPackage -User Username | Remove-AppxPackage
Uninstall all apps for all users, type Get-AppxPackage -AllUsers | Remove-AppxPackage
Uninstall a single app for all users, type remove-AppxProvisionedPackage [App Package Name]
Accomplish the steps as explained above.

About 

Nick is a Software Engineer. He has interest in gadgets and technical stuffs. If you are facing any problem with your Windows, feel free to ask him.

1 COMMENT

LEAVE A REPLY

Please enter your comment!
Please enter your name here

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