Win10 comes with software to uninstall

  
1. Click on the task bar to search, enter PowerShell, then right click on PowerShell in the search results, select to run as administrator.

2. Enter the following command in PowerShell and press Enter to wait for a moment to delete all pre-installed applications in the current account. Note that an error message will appear during the process, but this does not affect the final result.
Get-AppXPackage |  Remove-AppxPackage

3, not only the current account, but also uninstall all applications in other accounts, just enter the following command, replace "username" with the account name.
Get-AppXPackage -User "username" |  Remove-AppxPackage
To uninstall programs from all accounts, 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. These accounts can be deleted from the system account before creating the account, so that the new creation The full application will not be included in the account. To uninstall an app from your system account, simply enter the command below.
Get-AppXProvisionedPackage -online |   Remove-AppxProvisionedPackage–online

It should be noted that the app store will be deleted after the operation is performed. There is no way to retrieve it. Some updates will be installed in the system to install the app store again.
In addition, some built-in applications, such as Cortana, contact support staff, Edge browser, Windows feedback, settings and search can not be removed from the system.

Copyright © Windows knowledge All Rights Reserved