Win10 uses commands to uninstall the system's own application method

  
Many users who have installed the win10 system know that there are many built-in applications in the system, we rarely use them, and the memory occupied is also very large, so the most It is good to be able to delete them together. Although these built-in applications must have its value, it plays a certain role, but for some users with small computer memory, it is better to delete it, which can save some space. If it is a one-to-one deletion is a big project, so it is best to remove these applications collectively at once. The following small series will teach you how to use the command to uninstall Win10 native applications? Search

click the taskbar, type PowerShell, and then right-click PowerShell in the search results, select Run as administrator.

Enter the following command in PowerShell Enter a few moments to gather all the pre-installed applications currently accounts are deleted. Note that an error message may appear during the process, but this does not affect the final result.
Get-AppXPackage |  Remove-AppxPackage

not only the current account, we can also uninstall all applications other accounts, simply enter the following command, which will be "username" is replaced with the account name.
Get-AppXPackage -User "username" |  Remove-AppxPackage
If you want to uninstall apps from all accounts, you can enter the following command.
Get-AppxPackage -AllUsers |  Remove-AppxPackage
Some friends may have the need to create multiple accounts, but don't want to include the same set of apps in each account. Before creating an account, we can remove these apps from the system account, so new The full set of apps will not be included in the created account. To uninstall an app from your system account, simply enter the command below.
Get-AppXProvisionedPackage -online |  Remove-AppxProvisionedPackage-online

final results
should be noted that, after the operation application store will also be deleted after execution, the method is also not recovered, the system pushed some updates Reinstall the app store on your system. In addition, some built-in applications, such as Cortana, contact support, Edge browser, Windows feedback, settings and search cannot be removed from the system.

Copyright © Windows knowledge All Rights Reserved