Table of Contents
This tip is about the how to Improve Your System’s Performance by removing Bloatware in Windows 11. So read this free guide, How to Improve Your System’s Performance by removing Bloatware in Windows 11. If you have query related to same article you may contact us.
How to Improve Your System’s Performance by removing Bloatware in Windows 11 – Guide
Here you will know how to debloat Windows 11 to significantly improve its performance. Bloatware refers to unwanted software that is already installed on your Windows 11 computer system. These applications decrease battery life, consume RAM, slow down your device, and require additional storage.
Programs like weather apps, finance apps and game centers have some value but are often useless or even dangerous. You can see them working in the background, taking up disk and memory, even when they are not listed in your application list in Windows application settings.
In that guide, we will give you step-by-step instructions to unlock Windows 11 and improve your computer’s performance.
Install the latest updates on your Windows 11 PC
Before starting the unlocking process, you need to make sure your pc is up update yourself with the latest Windows 11 updates and create a system restore point (in case something goes wrong).
To check for updates, first open Windows Settings by clicking the Start menu and selecting the ‘Settings’ option or pressing Windows + I.
In the Settings app, click on the ‘Windows Update’ section at the bottom of the left pane. Then click on the ‘Check for updates’ button button in the right pane. If any updates are available, download and install the files. Then restart your PC if necessary.
Create a restore point on Windows 11
It’s always better to create a Windows restore point before unlocking your Windows 11 system. If by chance something goes wrong and you mess up up your system settings or you don’t like some of the changes made, you can always revert back to the previous state using the restore point you created. Here’s How to create a Windows Restore Point:
Click on the Start menu, type ‘Create a restore point’ and select the most suitable result.
This will open the ‘System Properties’ control applet. Go to the ‘System Protection’ tab, select the system drive where the operating system is installed and click the ‘Configure’ button button.
Then select the radio button Next to ‘Enable System Protection’, click ‘Apply’ and select ‘OK’.
Once system protection is enabled, you can create manual restore points. Now click on the ‘Create’ button button.
Enter a name or description for your restore point and click the ‘Create’ button button again.
After the restore point is created, you will see a success message.
Remove Bloatware Using Traditional Uninstallation
You can always remove unwanted bloatware applications using traditional uninstall option in settings or control panel. However, you cannot remove all bloatware through this method and not all applications show up in the settings app for you to uninstall.
To uninstall via settings, open the Windows Settings app, go to ‘Applications’ in the left pane and select ‘Applications and then features’right panel option.
Then find the unwanted app in the list of apps and click the three-dot menu button next to the app and select ‘Uninstall’ to remove it.
Hide / remove apps using ‘Remove-AppxPackage’ command
While it is easy to remove unwanted apps using the traditional uninstall method, you cannot uninstall all the apps built into your system. Windows doesn’t offer options to uninstall many built-in apps like Photos, Video Player, OneNote, Xbox, People, Camera, etc. For example, if you try to uninstall the ‘People’ app using the above method, the Uninstall option will be dimmed (inaccessible).
But you can use the Get-AppxPackage and Remove-AppxPackage commands in PowerShell to get rid of all or specific built-in apps in Windows 11. These commands invoke administrator privileges and execution policies to remove app packages.
This method does not permanently remove the respective apps from the Windows 11 OS image, it simply uninstalls / hides them from your current account. If you create a new user account or log in to another account, you’ll see that the apps are still there. You can also choose to remove apps from all accounts, but if you create a new account, you’ll find built-in apps there. If you use this method to uninstall apps, you can easily restore them later if you want them to come back.
See list of preloaded apps
First, you need to open PowerShell as an administrator. To do this, search for ‘Windows PowerShell’ in the Windows search and select ‘Run as administrator’ for the result.
Before removing apps, you may first want to get a list of all pre-installed apps. Type the following command into Powershell and press Enter to see the list of all applications (under the current user), along with detailed information about each one:
Get-AppxPackage
To find the list of apps along with app information under a specific user account, use this command:
Get-AppXPackage -User
where replace
Get-AppXPackage -User UserName
To find the list of apps with app information across all user accounts, enter this command:
Get-AppxPackage -AllUsers
If you only want to see the name of the apps and the PackageFullNames, which are the only information we need to remove an app, run the following command. This will just list the Name and PackageFullName of the apps in two columns (for the current user), omitting other information:
Get-AppxPackage | Select the name, PackageFullName
To find the list of apps under a specific user account, use this command:
Get-AppXPackage -User
| Select the name, PackageFullName
where replace
Get-AppXPackage -User Lavinya | Select the name, PackageFullName
To find the list of application names across all user accounts, enter this command:
Get-AppxPackage -AllUsers | Select the name, PackageFullName
Remove preloaded apps from your system
You can now use the Get-AppxPackage and Remove-AppxPackage commands to hide or remove bloatware from your system.
To remove an application from your computer, run the following command:
Get-AppxPackage
| Remove-AppxPackage
where replace
Get-AppxPackage Microsoft.Xbox.TCUI | Remove-AppxPackage
You can also use wildcards
for the AppName parameter to write commands easily. Instead of typing the full app name or package name, you can use wildcards to make commands easier to write. For example, instead of typing the entire app, like ‘Microsoft.XboxApp’ for the app name parameter, you could just write this:
Get-AppxPackage * Xbox * | Remove-AppxPackage
OR
Get-AppxPackage * XboxApp * | Remove-AppxPackage
The above command uninstalls the ‘Xbox app’ from the current user account only.
To uninstall an app from any specific user account, use the following command:
Get-AppxPackage -user
Where
is the name of the app you want to remove:
Get-AppxPackage -user Robb * xbox * | Remove-AppxPackage
Final note
I hope you like the guide How to Improve Your System’s Performance by removing Bloatware in Windows 11. In case if you have any query regards this article you may ask us. Also, please share your love by sharing this article with your friends.