We all hate these useless apps, don't we? Damn bloatware... going to kill 'em:
- Open Windows PowerShell
- First we will check the entire bloatware spectrum by using the command:
DISM /Online /Get-ProvisionedAppxPackages | select-string Packagename
and it will show us all the default apps installed.
- The next thing to do is to remove the desired apps. To do so use the following command:
DISM /Online /Remove-ProvisionedAppxPackage /PackageName:PACKAGENAME
where the PACKAGENAME is obviously the name of the app package shown in the list above.
- That's it! All done.