Uninstall application? (WIN10)
If you need to uninstall the installed applications on your system, you can do so by doing the following:
1. In desktop mode, use the right mouse button to click the "Start" in the lower-left corner.
2. Select "Settings".
3. Select "System".
4. Select "Application and Function".
5. Select the application you want to uninstall, and then click Uninstall at the bottom right. (Take user manual here for example)
Note: Please do not uninstall the system with its own application and driver, in order to avoid system failure.
Win10 How to uninstall your own software
1, click the search in the taskbar, enter PowerShell, and then in search results right-click PowerShell, choose to run as an administrator.
2, in the PowerShell input the following command enter a little wait for a moment can be the current account of all preinstalled applications are deleted. Note that error prompts may appear during the process, but this does not affect the final effect.
Get-appxpackage | Remove-appxpackage
3, not only the current account, we can also uninstall all the other accounts of the application, simply enter the following command, the "username" to replace the account name can be.
Get-appxpackage-user "username" | Remove-appxpackage
If you want to uninstall all accounts in the application, you can enter the following command.
Get-appxpackage-allusers | Remove-appxpackage
Some friends may have the need to create multiple accounts, but do not want to have a full set of identical applications in each account, before creating an account, we can remove the application from the system account, so the newly created account will not contain a full set of applications. To uninstall the application from the System account, simply enter the following command.
Get-appxprovisionedpackage-online | Remove-appxprovisionedpackage–online
It should be noted that the application store will also be deleted after the execution of the operation, and there is no way to retrieve it, and some updates from the system will be installed in the application store again in 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.