How to Remove Built-in Apps in Windows 10 ?

  1. Run dialog : powershell.
  2. Run the command below by the action you want to trigger.


Get a list of all installed apps :

Get-AppxPackage | Select Name, PackageFullName


Uninstall the app from all user accounts :

Get-AppxPackage -allusers PackageFullName | Remove-AppxPackage


Uninstall all built-in apps for all user accounts :

Get-AppxPackage -allusers | Remove-AppxPackage