Uninstall Windows 10 Built-in Apps
Open an elevated PowerShell prompt
Then uninstall apps as follows:
App to uninstall |
!PowerShell command |
vx |
3D Builder |
Get-AppxPackage *3dbuilder* | Remove-AppxPackage |
x |
Alarms and Clock |
Get-AppxPackage *windowsalarms* | Remove-AppxPackage |
x |
Calculator |
Get-AppxPackage *windowscalculator* | Remove-AppxPackage |
x |
Calendar and Mail |
Get-AppxPackage *windowscommunicationsapps* | Remove-AppxPackage |
x |
Camera |
Get-AppxPackage *windowscamera* | Remove-AppxPackage |
x |
Get Office |
Get-AppxPackage *officehub* | Remove-AppxPackage |
x |
Get Skype |
Get-AppxPackage *skypeapp* | Remove-AppxPackage |
x |
Get Started |
Get-AppxPackage *getstarted* | Remove-AppxPackage |
x |
Groove Music |
Get-AppxPackage *zunemusic* | Remove-AppxPackage |
|
Maps |
Get-AppxPackage *windowsmaps* | Remove-AppxPackage |
x |
Microsoft Solitaire Collection |
Get-AppxPackage *solitairecollection* | Remove-AppxPackage |
x |
Money |
Get-AppxPackage *bingfinance* | Remove-AppxPackage |
x |
Movies & TV |
Get-AppxPackage *zunevideo* | Remove-AppxPackage |
|
News |
Get-AppxPackage *bingnews* | Remove-AppxPackage |
x |
OneNote |
Get-AppxPackage *onenote* | Remove-AppxPackage |
|
People |
Get-AppxPackage *people* | Remove-AppxPackage |
|
Phone Companion |
Get-AppxPackage *windowsphone* | Remove-AppxPackage |
|
Photos |
Get-AppxPackage *photos* | Remove-AppxPackage |
|
Store |
Get-AppxPackage *windowsstore* | Remove-AppxPackage |
|
Sports |
Get-AppxPackage *bingsports* | Remove-AppxPackage |
x |
Voice Recorder |
Get-AppxPackage *soundrecorder* | Remove-AppxPackage |
|
Weather |
Get-AppxPackage *bingweather* | Remove-AppxPackage |
|
Xbox |
Get-AppxPackage *xboxapp* | Remove-AppxPackage |
x |
Source:
http://www.howtogeek.com/224798/how-to-uninstall-windows-10s-built-in-apps-and-how-to-reinstall-them/
In the above table:
- escape vertical bars using %VBAR%, so they're not interpreted as column breaks
- escape asterisks using a preceding !, so they're not interpreted as bold