All the software that comes with the Win10 system can be uninstalled. The method is as follows: 1. Use a third-party application to uninstall it; 2. Use the software POWERSHELL that comes with the WIN10 system to uninstall it.
#The operating environment of this tutorial: Windows 10 system, Dell G3 computer.
All the software that comes with the Win10 system can be uninstalled.
The method is as follows:
1. Use a third-party application to uninstall it
For example, the software management in Tencent’s Computer Manager can uninstall it, which is also the simplest. One method, but when you re-create an account, it will automatically pre-install these software.
2. Use the software POWERSHELL that comes with the WIN10 system
WINDOWS POWERSHELL is a command line shell and scripting environment that allows command line users and script writers to use . NET FRAMEWORK's powerful features.
It is important to find it in the start menu, right-click and "Run as administrator". Then we take uninstalling ONENOTE as an example, use the shortcut keys CTRL C and CTRL V to copy and paste the command
"GET-APPXPACKAGE *ONENOTE* | REMOVE-APPXPACKAGE" into POWERSHELL, hit Enter and wait for it Uninstall it yourself. Many error messages will pop up during the uninstallation process. It has actually been uninstalled, so ignore it.
Other built-in applications can also be uninstalled using this method. Uninstalled software can be re-downloaded from the app store.
Extended information:
The following are some commands for deleting WINDOWS 10 pre-installed applications:
Uninstall ONENOTE
GET-APPXPACKAGE *ONENOTE* | REMOVE-APPXPACKAGE
Uninstall 3D BUILDER
GET-APPXPACKAGE *3D* | REMOVE-APPXPACKAGE
Uninstall email and Calendar
GET-APPXPACKAGE *COMMUNI* | REMOVE-APPXPACKAGE,
Uninstall News Subscription
GET-APPXPACKAGE *BING* | REMOVE-APPXPACKAGE
Uninstall CAMERA
GET-APPXPACKAGE *CAMERA* | REMOVE-APPXPACKAGE
Uninstall map
GET-APPXPACKAGE *MAP* | REMOVE-APPXPACKAGE
Uninstall GROOVEMusic, Movies & TV
GET-APPXPACKAGE *ZUNE* | REMOVE-APPXPACKAGE
Remove connections
GET-APPXPACKAGE *PEOPLE* | REMOVE-APPXPACKAGE
Uninstall Mobile Assistant
GET-APPXPACKAGE *PHONE* | REMOVE-APPXPACKAGE
Uninstall Photos
GET-APPXPACKAGE *PHOTO* | REMOVE-APPXPACKAGE
Uninstall card game
GET-APPXPACKAGE *SOLIT* | REMOVE-APPXPACKAGE
Uninstall the recorder
GET-APPXPACKAGE *SOUNDREC* | REMOVE-APPXPACKAGE
Uninstall XBOX
GET-APPXPACKAGE *XBOX* | REMOVE-APPXPACKAGE
Uninstall all apps pre-installed in the current account
GET-APPXPACKAGE | REMOVE-APPXPACKAGE
Uninstall the pre-installed applications in all accounts
GET-APPXPACKAGE -ALLUSERS | REMOVE-APPXPACKAGE
Completely uninstall the pre-installed applications in the system (no more pre-installing applications when creating a new account) , use with caution)
GET-APPXPROVISIONEDPACKAGE -ONLINE | REMOVE-APPXPROVISIONEDPACKAGE–ONLINE
For more computer-related knowledge, please visit the FAQ column!
The above is the detailed content of Which programs that come with win10 can be uninstalled. For more information, please follow other related articles on the PHP Chinese website!