Win10 comes with a modern application quick uninstall method diagram

  

Like its predecessor Win8/Win8.1, Win10 continues to have an application store built in. The difference is that Windows 10 has been upgraded to a general-purpose app store with cross-platform features. Some friends may still prefer to use the Modern app, because traditional desktop apps can meet almost all of the needs of people, and the quality of Windows app store applications has yet to be improved. If you never use these Modern apps, Microsoft also provides a quick way to uninstall all apps, with built-in PowerShell.

Click Search in the taskbar, type 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 your 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, we can also uninstall all applications in other accounts, just enter the following command and replace the <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 have a full set of identical apps in each account. We can remove these apps from the system account before creating an account. So that the newly created account will not contain a full set of applications. To uninstall an app from your system account, simply enter the command below.

Get-AppXProvisionedPackage -online |  Remove-AppxProvisionedPackage–online

▲The 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, the system pushes Some updates will 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