Windows 10 comes bundled with many unused apps. Worse, it even install third-party apps from time to time by *itself* (even after you remove it!). Here's how to get rid of these bloatware.
<!-- more -->
## Stop uninstalled games from returning
Stop included games like Candy Crush and Minecraft to reappear after you remove them.
2.`File > Save As`, select Desktop folder, `Save as type` as `All Files` and set file name as `cloud-content.reg`.
3. Launch the `cloud-content.reg` file from your Desktop.
## Uninstall all preinstalled apps
This is the easiest method to remove all preinstalled apps. Note: this will remove **ALL** apps listed at the next [section](#uninstall-specific-preinstalled-app).
1. Launch PowerShell as administrator (right click `Run as administrator`).
1.1. Windows 10 Home user might not have it, install [here](https://docs.microsoft.com/en-us/powershell/scripting/setup/installing-powershell-core-on-windows?view=powershell-6).
2. Run the following command:
```
Get-AppxPackage -AllUsers | Remove-AppxPackage
```
## Uninstall specific preinstalled app
1. Launch PowerShell as administrator (right click `Run as administrator`).
2. Run the following command:
```
Get-AppxPackage *<app-name>* | Remove-AppxPackage
```
3. Substitute `<app-name>` with the package name listed below:
For example to remove 3D Builder,
```
Get-AppxPackage *3dbuilder* | Remove-AppxPackage
```
App name | Package name
---|---
3D Builder | 3dbuilder
3D Viewer | 3dviewer
Alarms and Clock¹ | windowsalarms
Calendar and Mail¹ | windowscommunicationsapps
Camera | windowscamera
Get Office | officehub
Get Skype | skypeapp
Get Started | getstarted
Groove Music | zunemusic
Maps | windowsmaps
Microsoft Solitaire Collection | solitairecollection
Money | bingfinance
Movies & TV | zunevideo
News | bingnews
OneNote | onenote
People | people
Phone Companion | windowsphone
Photos² | photos
Print 3D | print3d
Store³ | windowsstore
Sports | bingsports
Voice Recorder | soundrecorder
Wallet | wallet
Weather | bingweather
Xbox | xboxapp
¹ These are *not* the time and date view you get at the bottom right. Safe to remove.
² This is a full-screen/[UWP](https://en.wikipedia.org/wiki/Universal_Windows_Platform_apps) image viewer. Safe to remove.
³ You might need it. Safe to remove if you don't.
4. You can even remove Calculator `windowscalculator` and Paint `mspaint` if you're really sure you don't need them.
## Prevent removed default apps from returning during an update
1. No, you are not done yet. Those removed apps can return during an update.
2. To make sure they stay removed, create a registry `.reg` file ([how-to](#windows-10-home)). Remove any entry to keep the app.