How does the Win10 system uninstall its own application software?

  

The Modern application of the Win10 system start menu has a lot of pre-installed software. Most of the software is foreign. Some users who are not interested in English may be caught. Of course, some users simply do not like these applications. Fortunately, these applications are not uninstalled in the control panel, but they can be uninstalled, but you need to use Win10's built-in PowerShell feature.

steps:

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

2, 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



3, not only the current account, we can also uninstall all applications other accounts, simply enter the following command, which will be replaced with the account name.
Get-AppXPackage -User |  Remove-AppxPackage

4. If you want to uninstall apps from all accounts, you can enter the following command.
Get-AppxPackage -AllUsers |  Remove-AppxPackage

5, some friends may have the need to create multiple accounts, but do not want to include a full set of the same application in each account, we can remove these applications from the system account before creating an account, This will not include a full set of apps in the newly created account. To uninstall an app from your system account, simply enter the command below.
Get-AppXProvisionedPackage -online |  Remove-AppxProvisionedPackage–online

Once these built-in apps are uninstalled, they won't be retrieved, even the app store will be uninstalled. If users use the app store frequently, or pay attention to Windows feedback, etc., think twice before uninstalling.

Copyright © Windows knowledge All Rights Reserved