How to Uninstall Applications in Windows 10

How to Uninstall Applications in Windows 10

Ian

Administrator
Joined
Oct 27, 2013
Messages
1,736
Reaction score
630
Ian submitted a new article:

How to Uninstall Applications - A tutorial showing how to uninstall apps in Windows 10

If you're looking to free up some storage space or simply remove software you no longer use, you can use the Windows app management utility to uninstall the application. This will remove the program files, associated shortcuts and any related registry entries.

To begin, click the Start Button then the Settings icon:


Then click the System icon:


Now, click Apps & Features...

Read more about this article...
 

Data

Chief Operations Officer
Joined
Apr 13, 2017
Messages
427
Reaction score
81
There are a few way to handle this via UI.

1. CCleaner will also uninstall some stock apps, and you can also uninstall them from the Star Menu as well.
ccleaner-startup-cropped_780.png

Also there is a particular application from another community which is excellent at managing app re-installations/removals.

2. See http://www.thewindowsclub.com/10appsmanager-windows-10
10appsmanager-2.png

3. Along the way of this tutorial, using the start menu is done in similar manner. its been mentioned in comments above by @Regedit32 ;) however like tutorial its limited to non stock apps.
uninstall-windows-10-apps.png

4. Via powershell also possible

1. Open Powershell as admin
2. List all apps sorted by name ;)
Code:
Get-AppxPackage | select name | sort name
3. Uninstall app
Code:
Get-AppxPackage -Name 'insert.name.of.package' | Remove-AppxPackage
4. Re-install apps
Code:
Get-AppxPackage -allusers insert.packagename.here | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}

And the list goes on and on since there are many many ways to go about this.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top