Windows 10 comes with pre-installed applications.
You may want to uninstall some of these applications.
Just press Windows and R keys and write PowerShell.
You can see your PowerShell command line with this text:
Windows PowerShell
Copyright (C) 2015 Microsoft Corporation. All rights reserved.
PS C:\Users\your_user>
I will show you one list with these pre-installed applications. For each application you can use these commands:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | Get-AppxPackage -Name *WindowsCamera* | Remove-AppxPackage Get-AppxPackage -Name *ZuneMusic* | Remove-AppxPackage Get-AppxPackage -Name *WindowsMaps* | Remove-AppxPackage Get-AppxPackage -Name *MicrosoftSolitaireCollection* | Remove-AppxPackage Get-AppxPackage -Name *BingFinance* | Remove-AppxPackage Get-AppxPackage -Name *ZuneVideo* | Remove-AppxPackage Get-AppxPackage -Name *BingNews* | Remove-AppxPackage Get-AppxPackage -Name *WindowsPhone* | Remove-AppxPackage Get-AppxPackage -Name *Windows.Photos* | Remove-AppxPackage Get-AppxPackage -Name *BingSports* | Remove-AppxPackage Get-AppxPackage -Name *XboxApp* | Remove-AppxPackage Get-AppxPackage -Name *BingWeather* | Remove-AppxPackage Get-AppxPackage -Name *WindowsSoundRecorder* | Remove-AppxPackage Get-AppxPackage -Name *3DBuilder* | Remove-AppxPackage Get-AppxPackage -Name *SkypeApp* | Remove-AppxPackage Get-AppxPackage -Name *MicrosoftOfficeHub* | Remove-AppxPackage |