

Remove Candy Crush Soda Saga app Get-AppxPackage *Cand圜rushSodaSaga* | Remove-AppxPackage

Remove Camera app Get-AppxPackage *WindowsCamera* | Remove-AppxPackage Remove Calendar and Mail app Get-AppxPackage *windowscommunicationsapps* | Remove-AppxPackage Remove Calculator app Get-AppxPackage *WindowsCalculator* | Remove-AppxPackage Remove Asphalt 8:Airborne app Get-AppxPackage *Asphalt8Airborne* | Remove-AppxPackage Remove App Connector app Get-AppxPackage *Appconnector* | Remove-AppxPackage Remove Alarms & Clock app Get-AppxPackage *WindowsAlarms* | Remove-AppxPackage Remove 3D Builder app Get-AppxPackage *3dbuilder* | Remove-AppxPackage Here is the quick list of commands you can use to remove specific apps in Windows 10. The next command does the same as the command above: Get-AppxPackage *Minecraft* | Remove-AppxPackage

You can combine Get-AppxPackage and Remove-AppxPackage cmdlets in a single command to remove an app without specifying its full package name. Now, you can use this list to remove individual apps using the following command: Remove-AppxPackage "PackageFullName"įor example, I will remove Minecraft using the commnand: Remove-AppxPackage Microsoft.MinecraftUWP_1.0.700.0_圆4_8wekyb3d8bbwe The list of applications will be saved to the file Desktop\myapps.txt. Type or copy paste the following command: Get-AppxPackage | Select Name, PackageFullNameįor your convenience, you can save it to a file by redirecting the command output as follows: Get-AppxPackage | Select Name, PackageFullName >"$env:userprofile\Desktop\myapps.txt" Opening PowerShell as administrator is important, otherwise, the commands you run will fail.įirst of all, let's see the list of all installed Universal apps for the current user account. Or you can also press Ctrl + Shift + Enter to open it as administrator. When it comes up in the search results, right click on it and choose "Run as administrator". Open the Start menu (press Win key on the keyboard) and type Powershell. To remove a default app in Windows 10, you need to open an elevated PowerShell instance first.
