


Run the command to uninstall the particular pre-installed default Windows 10 Store app and restart your computer. If you wish to remove a pre-installed app from a particular user account, use following command: Get-AppxPackage -user username PackageFullName | Remove-AppxPackage Specific Commands to Uninstall Apps If you want to uninstall the particular pre-installed app from all user accounts, use the following command format: Get-AppxPackage -allusers PackageFullName | Remove-AppxPackage Write down the PackageFullName and replace it in the following command: Get-AppxPackage PackageFullName | Remove-AppxPackage For a list of all installed apps and PackageFullName enter: Get-AppxPackage | Select Name, PackageFullName
