How to uninstall win10 comes with software? Win10 comes with application uninstall method

  

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 apps 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 have a full set of identical apps in each account, they can be removed 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

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 pushed to install the app store on the system.

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