How to clean the app store's own application in Win10 system

  

1. Click on the search (Cortana icon) in the task bar to enter PowerShell, right click on PowerShell in the search results, select “ run as administrator & rdquo;.

2. The following command returns, PS will list a list of all installed applications in the system.
Get-AppxPackage -AllUsers

3. Find the application you want to uninstall and find its full name, PackageFullName. If you think it's too long, you can copy the results into Notepad to find keywords.
4. After applying the full name of the package, enter the following command to uninstall the corresponding application, and replace PackageFullName with the full name of the application package.
Remove-AppxPackage PackageFullName
For example, uninstall the built-in contacts application, you can enter the following command.
Remove-AppxPackage Microsoft.People_1.10241.0.0_x86__8wekyb3d8bbwe

After Uninstalling Results:


Copyright © Windows knowledge All Rights Reserved