Windows 10 post install clean-up

This may not be the opinion of many, but Microsoft Windows 10 is an attractive theme.  More compelling reasons to upgrade to it include critical updates and product support. That being said, having upgraded a computer or two to Microsoft Windows 10, I have noted that there are additional applications that I consider as bloatware.  Removing this bloatware through the traditional path of Add/Remove Software or right-click and Uninstall can be cumbersome.  PowerShell is a fantastic alternative as an approach.

There are likely others, however, on one box this series of commands adequately removed some of the bloatware from Microsoft Windows 10.

PS C:\WINDOWS\system32> Get-AppxPackage *3dbuilder* | Remove-AppxPackage
PS C:\WINDOWS\system32> Get-AppxPackage *windowscamera* | Remove-AppxPackage
PS C:\WINDOWS\system32> Get-AppxPackage *officehub* | Remove-AppxPackage
PS C:\WINDOWS\system32> Get-AppxPackage *skypeapp* | Remove-AppxPackage
PS C:\WINDOWS\system32> Get-AppxPackage *getstarted* | Remove-AppxPackage
PS C:\WINDOWS\system32> Get-AppxPackage *zunemusic* | Remove-AppxPackage
PS C:\WINDOWS\system32> Get-AppxPackage *windowsmaps* | Remove-AppxPackage
PS C:\WINDOWS\system32> Get-AppxPackage *solitairecollection* | Remove-AppxPackage
PS C:\WINDOWS\system32> Get-AppxPackage *bingfinance* | Remove-AppxPackage
PS C:\WINDOWS\system32> Get-AppxPackage *zunevideo* | Remove-AppxPackage
PS C:\WINDOWS\system32> Get-AppxPackage *bingnews* | Remove-AppxPackage
PS C:\WINDOWS\system32> Get-AppxPackage *onenote* | Remove-AppxPackage
PS C:\WINDOWS\system32> Get-AppxPackage *windowsphone* | Remove-AppxPackage
PS C:\WINDOWS\system32> Get-AppxPackage *photos* | Remove-AppxPackage
PS C:\WINDOWS\system32> Get-AppxPackage *windowsstore* | Remove-AppxPackage
PS C:\WINDOWS\system32> Get-AppxPackage *bingsports* | Remove-AppxPackage
PS C:\WINDOWS\system32> Get-AppxPackage *bingweather* | Remove-AppxPackage
PS C:\WINDOWS\system32> Get-AppxPackage *xboxapp* | Remove-AppxPackage

Source(s)
http://www.howtogeek.com/224798/how-to-uninstall-windows-10s-built-in-apps-and-how-to-reinstall-them/