- First, open Windows 10 PowerShell as administrator. Open the Start menu, search for “PowerShell,” right-click the PowerShell shortcut, and select “Run as administrator.” Agree to the UAC prompt.
- Copy and paste the following string into PowerShell and hit the enter key. This will to remove the following 15 apps at once :
3D Builder
Calendar and Mail
Get Office
Get Skype
Get Started
Groove Music
Maps
Microsoft Solitaire Collection
Money
Movies & TV
News
People
Phone Companion
Photos
Sports
Weather
Xbox
Get-AppxPackage *3dbuilder* | Remove-AppxPackage ;
Get-AppxPackage *windowscommunicationsapps* | Remove-AppxPackage ;
Get-AppxPackage *officehub* | Remove-AppxPackage ;
Get-AppxPackage *skypeapp* | Remove-AppxPackage ;
Get-AppxPackage *getstarted* | Remove-AppxPackage ;
Get-AppxPackage *zunemusic* | Remove-AppxPackage ;
Get-AppxPackage *windowsmaps* | Remove-AppxPackage ;
Get-AppxPackage *solitairecollection* | Remove-AppxPackage ;
Get-AppxPackage *bingfinance* | Remove-AppxPackage ;
Get-AppxPackage *zunevideo* | Remove-AppxPackage ;
Get-AppxPackage *bingnews* | Remove-AppxPackage ;
Get-AppxPackage *people* | Remove-AppxPackage ;
Get-AppxPackage *windowsphone* | Remove-AppxPackage ;
Get-AppxPackage *photos* | Remove-AppxPackage ;
Get-AppxPackage *bingsports* | Remove-AppxPackage ;
Get-AppxPackage *bingweather* | Remove-AppxPackage ;
Get-AppxPackage *xboxapp* | Remove-AppxPackage ;