Documentation
  • Documentation
  • Overview
  • Scripts
    • Windows 10 Remove Bloatware
  • Tools
    • Design
    • Development
    • Productivity
    • Operating System
Powered by GitBook
On this page
  1. Scripts

Windows 10 Remove Bloatware

Make sure you understand exactly what the script is doing before executing it. I'm not responsible for your actions.

Run Powershell as Administrator and run the following commands:

Get-AppxPackage -allusers *3dbuilder* | Remove-AppxPackage
Get-AppxPackage -allusers *windowscommunicationsapps* | Remove-AppxPackage
Get-AppxPackage -allusers *officehub* | Remove-AppxPackage
Get-AppxPackage -allusers *getstarted* | Remove-AppxPackage
Get-AppxPackage -allusers *zunemusic* | Remove-AppxPackage
Get-AppxPackage -allusers *zunevideo* | Remove-AppxPackage
Get-AppxPackage -allusers *solitarecollection* | Remove-AppxPackage
Get-AppxPackage -allusers *bingfinance* | Remove-AppxPackage
Get-AppxPackage -allusers *bingnews* | Remove-AppxPackage
Get-AppxPackage -allusers *Microsoft.People* | Remove-AppxPackage
Get-AppxPackage -allusers *bingsports* | Remove-AppxPackage
Get-AppxPackage -allusers *xboxapp* | Remove-AppxPackage
Get-AppxPackage -allusers *3DPrint* | Remove-AppxPackage
Get-AppxPackage -allusers *skypeapp* | Remove-AppxPackage
Get-AppxPackage -allusers *advertising* | Remove-AppxPackage
Get-AppxPackage -allusers *bingweather* | Remove-AppxPackage

windowscommunicationapps contains the mail and calendar applications.

zunemusic is the music application and zunevideo is the video application

PreviousDocumentationNextDesign

Last updated 5 years ago