Win10 Uninstall Preinstalled Apps

Windows 10 comes bundled with a bunch of preinstalled apps, mattering on your usage, you might not want all or any of them installed on your system..

Here’s how to get rid of them :)…

1. run powershell as admin

2. run these commands, mattering on the particular apps you want to remove:

Uninstall Alarms and Clock:
Get-AppxPackage *windowsalarms* | Remove-AppxPackage

Uninstall Calendar and Mail:
Get-AppxPackage *windowscommunicationsapps* | Remove-AppxPackage

Uninstall Maps:
Get-AppxPackage *windowsmaps* | Remove-AppxPackage

Uninstall People:
Get-AppxPackage *people* | Remove-AppxPackage

Uninstall Photos:
Get-AppxPackage *photos* | Remove-AppxPackage

Uninstall Weather:
Get-AppxPackage *bingweather* | Remove-AppxPackage

Uninstall Xbox:
Get-AppxPackage *xboxapp* | Remove-AppxPackage

Uninstall Messaging and Skype Video:
get-appxpackage *messaging* | remove-appxpackage

Uninstall Phone:
get-appxpackage *commsphone* | remove-appxpackage

uninstall stickynotes:
Get-AppxPackage -allusers *Microsoft.MicrosoftStickyNotes* | Remove-AppxPackage

uninstall calculator:
Calculator: Get-AppxPackage *windowscalculator* | Remove-AppxPackage

uninstall Get Office:
Get-AppxPackage *officehub* | Remove-AppxPackage

uninstall Get Skype:
Get-AppxPackage *skypeapp* | Remove-AppxPackage

uninstall Get Started:
Get-AppxPackage *getstarted* | Remove-AppxPackage

uninstall Groove Music:
Get-AppxPackage *zunemusic* | Remove-AppxPackage

uninstall Microsoft Solitaire Collection:
Get-AppxPackage *solitairecollection* | Remove-AppxPackage

uninstall Money:
Get-AppxPackage *bingfinance* | Remove-AppxPackage

uninstall Movies & TV:
Get-AppxPackage *zunevideo* | Remove-AppxPackage

uninstall News:
Get-AppxPackage *bingnews* | Remove-AppxPackage

uninstall OneNote:
Get-AppxPackage *onenote* | Remove-AppxPackage

uninstall Phone Companion:
Get-AppxPackage *windowsphone* | Remove-AppxPackage

uninstall Store:
Get-AppxPackage *windowsstore* | Remove-AppxPackage

uninstall Sports:
Get-AppxPackage *bingsports* | Remove-AppxPackage

uninstall Voice Recorder:
Get-AppxPackage *soundrecorder* | Remove-AppxPackage

uninstall 3D Builder:
Get-AppxPackage *3dbuilder* | Remove-AppxPackage

uninstall Camera:
Get-AppxPackage *windowscamera* | Remove-AppxPackage

to find and remove any other apps:

1) Get-AppxPackage
**to find app info**

2) Get-AppxPackage -allusers **PackageFullName** | Remove-AppxPackage
replace “**PackageFullName**” with the package name of app to remove

Leave a Reply