Jump to content

How to Easily Remove Bloatware From Windows 10 - Other Helpful Tutorials - InviteHawk - The #1 Trusted Source for Free Tracker Invites

Buy, Sell, Trade, or Find Free Invites for top private trackers like redacted, blutopia, losslessclub, femdomcult, filelist, Chdbits, Uhdbits, empornium, iptorrents, hdbits, gazellegames, animebytes, privatehd, myspleen, torrentleech, morethantv, bibliotik, alpharatio, blady, passthepopcorn, brokenstones, pornbay, cgpeers, cinemageddon, broadcasthenet, learnbits, torrentseeds, beyondhd, cinemaz, u2.dmhy, Karagarga, PTerclub, Nyaa.si, Polishtracker, and many more.

Recommended Posts


  • Member ID:  53,629
  • Followers:  0
  • Topic Count:  3,075
  • Topics Per Day:  1.55
  • Content Count:  3,094
  • Content Per Day:  1.56
  • Reputation:   105
  • Achievement Points:  4,020
  • Days Won:  0
  • Joined:  01/24/2021
  • Status:  Offline
  • Last Seen:  

Bloatware is a scourge for technology owners. Manufacturers fill your shiny new laptop, phone, or tablet with pre-installed applications to put an extra dollar in their pocket. You are left with bundles of oft-useless programs taking up the already limited storage space.

Microsoft is no stranger to bloatware. Windows 10 might look the part, but behind the scenes, there are a plethora of programs you simply don't need. Luckily, you can rid yourself of the bloatware. Let's look at how to ease the pressure and debloat Windows 10.

How to Remove Windows 10 Bloatware

Windows 10 does come with a reasonably large amount of bloatware. In most cases, it is easy to remove. There are also a few different removal options, too: using the traditional uninstall, using PowerShell commands, and third-party installers.

Bloatware doesn't feature within the System > Apps & Features list you would normally use to uninstall a program. Why would it? Microsoft and other manufacturers who deliver products with bloatware stand to profit from your using them, so making it easy to uninstall isn't in their best interest.

If you're considering removing the bloatware due to space concerns, find out how much space you really need to run Windows 10.

Uninstall Windows 10 Bloatware Apps

Some of the Windows 10 bloatware is easy to remove using a regular uninstall. This appears to work for several apps included in the Windows 10 installation package, such as Money, News, Sports, and a few others clogging up your Start menu. (Here are some more Windows programs you should consider uninstalling!)

Find the application you want to remove, right-click, and select Uninstall.

Microsoft has made it simple to remove the more cosmetic items within Windows 10. But you will quickly realize that Microsoft doesn't consider all apps equal. Indeed, those apps that Microsoft considers part of the core Windows 10 experience require you to use PowerShell commands to hide or remove, or third-party uninstaller (more on both of these below). Others, such as Cortana, simply cannot be 100% removed from your system.

Just be careful to avoid bloatware when installing new Windows software.

Using PowerShell to Remove Bloatware

PowerShell is an important part of Windows system management. While some compare PowerShell to the Command Prompt, at their core they are different beasts. However, PowerShell is a command and scripting language that gives you greater control over your Windows installation. In this instance, you can use a series of PowerShell commands to either hide or remove Windows 10 bloatware.

First, open the PowerShell command line. Type PowerShell into your Start menu search bar. The best match should be Windows PowerShell. Right-click and select Run as Administrator. This ensures you have control over the entire system.

Next, you need to decide what to remove. The PowerShell commands can remove any packages ranging from the Zune Music Player to Bing Health and Fitness, to the Microsoft Windows Calculator.

Hide Apps Using the "Remove-AppxPackage" Command

Entering the following code into the PowerShell will hide each application you enter.

Get-AppxPackage -name "Microsoft.ZuneMusic" | Remove-AppxPackage Get-AppxPackage -name "Microsoft.Music.Preview" | Remove-AppxPackage Get-AppxPackage -name "Microsoft.XboxGameCallableUI" | Remove-AppxPackage Get-AppxPackage -name "Microsoft.XboxIdentityProvider" | Remove-AppxPackage Get-AppxPackage -name "Microsoft.BingTravel" | Remove-AppxPackage Get-AppxPackage -name "Microsoft.BingHealthAndFitness" | Remove-AppxPackage Get-AppxPackage -name "Microsoft.BingFoodAndDrink" | Remove-AppxPackage Get-AppxPackage -name "Microsoft.People" | Remove-AppxPackage Get-AppxPackage -name "Microsoft.BingFinance" | Remove-AppxPackage Get-AppxPackage -name "Microsoft.3DBuilder" | Remove-AppxPackage Get-AppxPackage -name "Microsoft.WindowsCalculator" | Remove-AppxPackage Get-AppxPackage -name "Microsoft.BingNews" | Remove-AppxPackage Get-AppxPackage -name "Microsoft.XboxApp" | Remove-AppxPackage Get-AppxPackage -name "Microsoft.BingSports" | Remove-AppxPackage Get-AppxPackage -name "Microsoft.WindowsCamera" | Remove-AppxPackage Get-AppxPackage -name "Microsoft.Getstarted" | Remove-AppxPackage Get-AppxPackage -name "Microsoft.Office.OneNote" | Remove-AppxPackage Get-AppxPackage -name "Microsoft.WindowsMaps" | Remove-AppxPackage Get-AppxPackage -name "Microsoft.MicrosoftSolitaireCollection" | Remove-AppxPackage Get-AppxPackage -name "Microsoft.MicrosoftOfficeHub" | Remove-AppxPackage Get-AppxPackage -name "Microsoft.BingWeather" | Remove-AppxPackage Get-AppxPackage -name "Microsoft.BioEnrollment" | Remove-AppxPackage Get-AppxPackage -name "Microsoft.WindowsStore" | Remove-AppxPackage Get-AppxPackage -name "Microsoft.Windows.Photos" | Remove-AppxPackage Get-AppxPackage -name "Microsoft.WindowsPhone" | Remove-AppxPackage

Hiding a pre-installed app has the advantage of obscuring it from your view without actually deleting it from your system. If at a later date you realize that you do require the app, you can relocate it.

Deleting Windows 10 Bloatware With DISM

Want to truly obliterate every piece of bloatware from your system using PowerShell? There's a different command line tool for that: DISM. DISM stands for Deployment Imaging Service and Management. The DISM command is relatively powerful and can be used to service a Windows system in many different ways. In this case, we'll use it to remove the additional apps from your system.

Deleting the apps works a little differently to hiding. First, check to see the entire spectrum of system bloatware using the following command:

DISM /Online /Get-ProvisionedAppxPackages | select-string Packagename

You should now see a complete list of installed apps. We can now use the package names in the list to begin removing them. To remove them, use the following command:

DISM /Online /Remove-ProvisionedAppxPackage /PackageName:PACKAGENAME

Where PACKAGENAME is taken from the list we previously generated. As you can see in the below image, I've chosen to remove the Microsoft Zune Video package. Once the operation completes successfully, you'll need to restart your machine for the code to take full effect.

Delete Using Windows10Debloater PowerShell Script

Of course, it wouldn't be a MakeUseOf article if you didn't learn how to automate the process. The Windows10Debloater is a PowerShell script developed by Sycnex. It removes almost every additional Windows 10 package from the operating system, stripping it bare. Within that, however, it also removes apps you might find useful, such as TuneInRadio, PowerBI, or the Windows Netflix app.

You can find the Windows10Debloater here (along with the full list of apps for deletion).

On the GitHub page, head to the top-right corner and select Clone or download. Select Download ZIP from the drop-down menu. When the archive downloads, right-click and use your favorite tool to extract the folders.

There are two versions of the main script:

Windows10Debloater: This version is silent and gets on with business.

Windows10DebloaterGUI: This version has a basic GUI with a few removal options, as well as the Revert Changes options.

The PowerShell script automates the process you went through in the previous section. As a bonus, it also removes the associated Windows Registry entries for the bloatware apps after removal.

Regarding the removal of apps you want to keep, you have two options. One is to head back to the prior section and manually remove the bloatware. The other is to re-enable and install any apps after running the script. Either way is slightly time-consuming, so it really is a personal preference.

Why Delete Windows 10 Bloatware Apps?

While the Windows 10 bloatware doesn't take up much physical space, it is more about exercising control over your system, especially before using a new computer. Many consider the default apps included in the installation to be "garbage" and while this author would agree in some cases, there are some others I cannot see the point of removing.

Whichever way you feel, you now have the tools to remove each piece of bloatware yourself. Happy obliterating. And if you want to get rid of OneDrive or disable the Microsoft Office Upload Center, we've figured that out for you, too.


  • Member ID:  48,211
  • Followers:  60
  • Topic Count:  144
  • Topics Per Day:  0.06
  • Content Count:  30,040
  • Content Per Day:  13.22
  • Reputation:   2,202
  • Achievement Points:  38,182
  • Days Won:  11
  • Joined:  04/09/2020
  • Status:  Offline
  • Last Seen:  

Avoid unnecessary posts such as 'Thank you', 'Welcome', etc. Such posts will be deleted and user will be warned if it happens again. If caught spamming, the following actions are applicable -

  • First time - Warning
  • Second time - 5000 Points will be deducted
  • Third time - Ban for 7 days
  • Fourth time - Permanent Ban

If the post helped you, reward the user by reacting to the post like this -

1.jpg

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Read this before posting -
  • Only post if you have something valuable to contribute.
  • Avoid unnecessary posts such as 'Thank you', 'Welcome', etc. Such posts will be deleted and you will be warned if it happens again.
  • If the post helped you, reward the user by reacting to the post like this -                      1.jpg
Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Customer Reviews

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.