1. Start PowerShell: Enter "PowerShell" in the search box, right-click on "Windows PowerShell" labeled "Desktop Application", select "Run as Administrator" command;
Run as Administrator PowerShell
2. In the Open PowerShell window, enter the "Get-appxpackage | Select Name, Packagefullname "(note spaces and English punctuation) to view the list of installed applications;
Application List installed
3, input "Get-appxpackage-allusers Packagefullname | Remove-appxpackage to uninstall the specified application, where Packagefullname is the string in the list on the right of the previous illustration. Here we do not need to enter a full long string of names, you can use the form of partial character Degaton to simplify the command.
For example, to uninstall the WINDOWS10 built-in voice recorder, the application's corresponding detailed name is: Microsoft.windowssoundrecorder_10.1507.7010.0_x86__8wekyb3d8bbwe, we can use *soundrecorder* to replace this long string of names, namely: Get-appxpackage-allusers *soundrecorder* | Remove-appxpackage
Note: We can use Get-appxpackage-allusers | Remove-appxpackage to uninstall all built-in applications, but this is not recommended, because it will be uninstalled with the Windows Store, which can easily affect subsequent use.
WIN10 built-in application of the corresponding uninstall command, unlisted applications can be through the "Start menu-all applications" right key Uninstall
Get-appxpackage *communicationsapps* | Remove-appxpackage
Get-appxpackage *people* | Remove-appxpackage
Get-appxpackage *zunemusic* | Remove-appxpackage
Get-appxpackage *zunevideo* | Remove-appxpackage
• Command Get-appxpackage *zune* | Remove-appxpackage can delete both previous items
Get-appxpackage *bingfinance* | Remove-appxpackage
Get-appxpackage *bingnews* | Remove-appxpackage
Get-appxpackage *bingsports* | Remove-appxpackage
Get-appxpackage *bingweather* | Remove-appxpackage
• Command Get-appxpackage *bing* | Remove-appxpackage can delete the above four items at the same time
Get-appxpackage *onenote* | Remove-appxpackage
Get-appxpackage *alarms* | Remove-appxpackage
Get-appxpackage *calculator* | Remove-appxpackage
Get-appxpackage *camera* | Remove-appxpackage
Get-appxpackage *photos* | Remove-appxpackage
Get-appxpackage *maps* | Remove-appxpackage
Get-appxpackage *soundrecorder* | Remove-appxpackage
Get-appxpackage *xbox* | Remove-appxpackage
4, if you need to restore the application of uninstall, you can use the command Get-appxpackage-allusers | foreach {Add-appxpackage-register $ ($_). installlocation) appxmanifest.xml "-disabledevelopmentmode}", which will reload all the built-in applications.