Win10 uses the command 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 it, 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 teaches you how to use Win10 to uninstall the built-in application?
Click Search in the taskbar, enter PowerShell, then right-click PowerShell in the search results and select Run as administrator.
Enter the following command in PowerShell and press Enter to wait for a moment to delete all pre-installed apps in the current account. 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, but also all applications in other accounts, just enter the following command and replace "username" 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 effect
It should be noted that the application store will also be deleted after the execution of the operation. There is no way to retrieve it. Some updates pushed by the system will be re-in the system. Install the app store. In addition, some built-in applications, such as Cortana, contact support, Edge browser, Windows feedback, settings and search cannot be removed from the system.
The above method can quickly help you to delete the application that comes with the system, but it should be noted that this method will also delete the application store, and there is no way to retrieve it, so everyone should be cautious!

Copyright © Windows knowledge All Rights Reserved