windows:client_os:win10bloat

no way to compare when less than two revisions

Differences

This shows you the differences between two versions of the page.


windows:client_os:win10bloat [2019/10/31 09:06] (current) – created - external edit 127.0.0.1
Line 1: Line 1:
 +====== Remove Windows 10 bloatware ======
 +You have a fresh install of Windows 10, and there are all those programs you just don't want to see on a fresh install. Here is how to remove them.\\
 +Open PowerShell in elevated mode and copy/paste theese lines one by one:
  
 +<code bash>
 +Get-AppxPackage *XboxApp* | Remove-AppxPackage
 +Get-AppxPackage *WindowsStore* | Remove-AppxPackage
 +Get-AppxPackage *3dbuilder* | Remove-AppxPackage
 +Get-AppxPackage *bing* | Remove-AppxPackage
 +Get-AppxPackage *windowsalarms* | Remove-AppxPackage
 +Get-AppxPackage *windowscommunicationsapps* | Remove-AppxPackage
 +Get-AppxPackage *getstarted* | Remove-AppxPackage
 +Get-AppxPackage *skypeapp* | Remove-AppxPackage
 +Get-AppxPackage *windowsmaps* | Remove-AppxPackage
 +Get-AppxPackage *OneNote* | Remove-AppxPackage
 +Get-AppxPackage *Photos* | Remove-AppxPackage
 +Get-AppxPackage *ZuneMusic* | Remove-AppxPackage
 +Get-AppxPackage *ZuneVideo* | Remove-AppxPackage
 +Get-AppxPackage *OfficeHub* | Remove-AppxPackage
 +Get-AppxPackage *WindowsPhone* | Remove-AppxPackage
 +</code>
 +
 +You can allways uninstall everywting:
 +
 +<code bash>
 +Get-AppXPackage -User | Remove-AppxPackage
 +Get-AppXPackage -AllUsers | Remove-AppxPackage
 +</code>
  • windows/client_os/win10bloat.txt
  • Last modified: 2019/10/31 09:06
  • by 127.0.0.1