How to uninstall Win10 built-in application

  

Specific method
1, first 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, enter the following command to enter, PS will list all installed applications in the system.
Get-AppxPackage -AllUsers

3. Find the application you want to uninstall from the list 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 finding the full name of the application package, enter the following command to uninstall the corresponding application, 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

5, after uninstallation results:


Copyright © Windows knowledge All Rights Reserved