- Uninstall or remove apps and programs in Windows 10
- How to Uninstall Apps From Windows 7, 8, and 10
- Remove old and unused apps to free space on your PC
- What to Know
- Remove an App With the Windows 10 Start Menu Option
- Windows 10 Settings App Option
- Windows 8.1 and 8
- Windows 7
- How to uninstall Windows 10 apps for all users [QUICK STEPS]
- How can I delete Windows 10 app for all users?
- Remove a Specific Windows 10 App for all Users
- Remove all Apps for all Users
- How to Uninstall the Default / Inbuilt Apps in Windows 10
- Remove Windows 10 Built in Apps using PowerShell
- Use the following commands to remove a specific app:
Uninstall or remove apps and programs in Windows 10
There are different ways to remove apps and programs, so if you can’t find the one you’re looking for, you can try another location. Note that some apps and programs are built into Windows and can’t be uninstalled. You can try to repair a program first, if it’s just not running correctly.
Uninstall from the Start menu
Select Start and look for the app or program in the list shown.
Press and hold (or right-click) on the app, then select Uninstall.
Uninstall from the Settings page
Select Start , then select Settings > Apps > Apps & features. Or just click the shortcut link at the bottom of this article.
Select the app you want to remove, and then select Uninstall.
Uninstall from the Control Panel (for programs)
In the search box on the taskbar, type Control Panel and select it from the results.
Select Programs > Programs and Features.
Press and hold (or right-click) on the program you want to remove and select Uninstall or Uninstall/ Change. Then follow the directions on the screen.
If you get an error message when you’re uninstalling, try the Program Install and Uninstall Troubleshooter.
If you’re trying to remove malware, see Stay protected with Windows Security to find out how to run a scan. Or if you use another antivirus software program, check their virus protection options.
How to Uninstall Apps From Windows 7, 8, and 10
Remove old and unused apps to free space on your PC
What to Know
- Use the Apps & features or Add or Remove Programs function from the Control Panel.
- You can also open the uninstall function or program that may have come with the application.
This article explains how to remove specific apps you don’t like or just don’t use from a Windows 10, 8 or 7 operating system.
Remove an App With the Windows 10 Start Menu Option
The first way is the simplest and quickest method for removing an app.
Select Start.
Find the program you want to uninstall by scrolling down the All Apps list.
When you find the program or Windows Store app you want to get rid of, hover over it with your mouse, and right-click.
From the menu that appears, select Uninstall.
In Programs and Features, scroll until you find the app you want to uninstall, select it, then click Uninstall.
Windows 8 and 8.1 users can also use this method. Instead of right-clicking a program in the Start menu, however, you’d right-click from the Start or All Apps screens.
Windows 10 Settings App Option
Another option is to follow the Settings app method. Get started by navigating to Apps & features. A list of all the installed Windows Store apps and desktop programs will populate on this screen of the Settings app.
Select the Start button then go to Settings.
Under Windows Settings, select Apps.
Under Apps & features, scroll down to find the app you want to uninstall.
Select the app, and then select Uninstall.
Confirm removal by selecting Uninstall again.
Follow the program’s uninstall prompts.
Windows 8.1 and 8
Other than the right-click method listed in the Windows 10 section, Windows 8.1 has a similar way to remove apps through the Programs and Features control panel.
Press the Windows Key or select Start on the lower left-hand corner to open the Start Screen.
Locate the application you want to uninstall and right-click the app icon and select Uninstall.
The Programs and Features control panel applet will open. Make sure the correct app is selected.
Select Uninstall/Change and follow the uninstall wizard to complete removal.
You can also bypass and go straight to the Programs and Features control panel applet by doing the following:
Windows 8.1: Right-click the Start menu and select Programs and Features from the context menu.
Windows 8: Hover your cursor over the bottom left corner of your desktop until you see a small image of the Start Screen. Right-click on the context menu and select Programs and Features.
Windows 7
As of January 2020, Microsoft is no longer supporting Windows 7. You should upgrade to Windows 10 to continue receiving security updates and technical support.
Just as previous Windows systems, Windows 7 utilizes the Start menu to begin any uninstall.
Select the Start button.
Select Control Panel.
Select Programs.
Under Programs and Features, scroll to find the program you want to uninstall.
Select the program then select Uninstall.
Follow along with the uninstall prompts to complete the app removal.
How to uninstall Windows 10 apps for all users [QUICK STEPS]
- Download Restoro PC Repair Tool that comes with Patented Technologies (patent available here).
- Click Start Scan to find Windows issues that could be causing PC problems.
- Click Repair All to fix issues affecting your computer’s security and performance
- Restoro has been downloaded by 0 readers this month.
Windows 10 includes a series of preinstalled apps that you can’t uninstall by selecting Uninstall options on their Start menu context menus.
Thus, you’ll need to utilise PowerShell to remove some of the built-in apps. With PowerShell, you can remove built-in UWP apps from all your laptop‘s or desktop’s user accounts. This is how you can utilise PowerShell to uninstall apps for all users.
How can I delete Windows 10 app for all users?
Remove a Specific Windows 10 App for all Users
- First, open PowerShell as an administrator by clicking the Cortana button on the taskbar.
- Enter ‘PowerShell‘ in the search box.
- Right-click Windows PowerShell and select Run as administrator to open the window shown directly below.
- Then enter the following in Powershell:
Get-AppxPackage | Select Name, PackageFullName
- That command will display a list of apps when you press the Enter key. Copy the package full name of the app you need to remove by selecting it in PowerShell and pressing Enter.
- Then you can press Ctrl + V to paste the package full name into a text document for reference. This is an example of a package full name: Microsoft.XboxApp_41.41.18005.0_x64__8wekyb3d8bbwe.
- Note that you can shorten the package full names by including wildcards (**) around them. For example, you can enter *xboxapp* instead of Microsoft.XboxApp_41.41.18005.0_x64__8wekyb3d8bbwe for the Xbox app .
- To remove an app from a single user account, you would enter ‘Get-AppxPackage PackageFullName | Remove-AppxPackage‘ in Powershell. However, to uninstall the app from all user accounts you need to include -allusers by entering the following command:
Get-AppxPackage -allusers PackageFullName | Remove-AppxPackage
- So enter the above command into PowerShell for the required app, and press the Enter key. For example, to uninstall the Xbox app you would enter the following:
get-appxpackage -allusers *xboxapp* | remove-appxpackage
Remove all Apps for all Users
You can quickly uninstall all the preinstalled apps for all user accounts. To do that, open PowerShell as an administrator as before. Then enter this PowerShell command: Get-AppxPackage -AllUsers | Remove-AppxPackage.
You can also reinstall those built-in apps if required. To do so, enter ‘Get-AppxPackage -allusers | foreach ‘ in PowerShell and press Return. To reinstall a single app, enter ‘Add-AppxPackage -register “C:Program FilesWindowsAppsPackageFullNameappxmanifest.xml” -DisableDevelopmentMode‘ in PowerShell instead.
If you need additional info on what to do if the Windows 10 default apps are missing, check out shit article.
If you’re looking to remove the default apps from a Windows 10 image, you can quickly do that with PowerShell. Follow these quick steps and you’ll be done in no time.
So that’s how you can uninstall preinstalled Windows 10 apps you really don’t need for all users. Just make sure the other users don’t need the apps before you uninstall them!
If you have any other questions or suggestions, feel free to leave them in the comments section below.
RELATED STORIES TO CHECK OUT:
How to Uninstall the Default / Inbuilt Apps in Windows 10
Some apps can be easily uninstalled through the normal way using the windows control panel . Simply right click on the app and then uninstall them. On touch sensitive screens you need to long press on the app icon and the same menu will appear, where you need to tap uninstall. This trick helps to uninstall these apps – Get Started, Get Office, Get Skype, Money, Phone Companion, Solitaire, News, Sports, Bloatware apps that come with every device by the manufacturer.
But some inbuilt apps are not easy to uninstall. In this case method is useful to remove / uninstall / reinstall an inbuilt or default apps / software of Windows 10.
Remove Windows 10 Built in Apps using PowerShell
Windows PowerShell lets you uninstall many other apps with the exception of Microsoft Edge. Open the start menu, Search PowerShell and then run this program as an administrator. Just right click on the program and select the option.
You can also press Ctrl+shift+enter to run it as an administrator. PowerShell responds to specific commands for particular apps. You can utilize the Get-AppxPackage or Remove-AppxPackage commands to remove the built-in apps from Windows 10. If you want to delete an app, then in addition to these commands you will also need to provide info such as PackageFullName (the full package name of the relevant app).
Run the following command to get a list of all installed apps in Windows 10
This command will display all the installed apps with all their specific details and their full names which we require to uninstall them. We need the PackageFullName of the relevant apps so we run the following command to find out their names:
Get-AppxPackage | Select Name , PackageFullName
This command will show the name of the app and the PackageFullName and omit the undesired information.
To remove all inbuilt / default app from all user accounts in win 10
To remove all modern apps from system account
Use the following commands to remove a specific app:
Uninstall Skype app
Uninstall Sway
Uninstall Phone:
Uninstall Phone Companion:
Uninstall Phone and Phone Companion apps together:
Uninstall Calendar and Mail apps together:
Uninstall People:
Uninstall Groove Music:
Uninstall Movies & TV:
Uninstall Groove Music and Movies & TV apps together:
Uninstall Money:
Uninstall News:
Uninstall Sports:
Uninstall Weather:
Uninstall Money, News, Sports and Weather apps together:
Uninstall OneNote:
Uninstall Alarms & Clock:
Uninstall Calculator:
Uninstall Camera:
Uninstall Photos:
Uninstall Maps:
Uninstall Voice Recorder:
Uninstall Xbox:
Uninstall Microsoft Solitaire Collection:
Uninstall Get Office:
Uninstall Get Skype:
Uninstall Get Started:
Uninstall 3D Builder:
Uninstall Microsoft Store (Windows apps store):
Disable Microsoft Windows Defender
Enable Microsoft Windows Defender
This is an easy method for removing undesired apps from your Windows 10. However, there is no real use for uninstalling these, except to reduce the number of apps from your start menu. This is because the space freed from uninstalling these apps is not very significant.
FAQ:
Q: Why we need to uninstall the pre-installed / inbuilt apps / software in Windows 10?
A: Some times we require to uninstall default or inbuilt apps of Windows 10 to troubleshoot them. Removing and then reinstalling some times fixed the issue quickly. Windows 10 comes with a variety of apps that may be useless for some people and can irritate many users. These apps occupy little space, thus deleting them is just as useless as keeping them on the computer. It is best to ignore them if you don’t want to use them. However, if you want to delete these apps, then you need to follow some steps.
Q: How to remove apps using the control panel?
A: You can follow the tutorial here Uninstall apps / software from Windows 10. It will help you to uninstall apps from Windows 10 using the control panel.