Published on
Takes approximately 1 minute to read
Post HistoryFresh Installation Cheatsheet
This post was archived on .
The content may be old and no longer accurate.
PowerShell
Skipcode block
$apps = @(
"A278AB0D.MarchofEmpires",
"9E2F88E3.Twitter",
"Facebook.Facebook",
"king.com.CandyCrushSodaSaga",
"Microsoft.MicrosoftSolitaireCollection",
"Microsoft.SkypeApp",
"Microsoft.MinecraftUWP",
"Microsoft.MicrosoftOfficeHub",
"Microsoft.BingWeather",
"Microsoft.BingNews",
"Microsoft.Getstarted",
"Microsoft.OneConnect",
"Microsoft.MSPaint",
"Microsoft.Print3D"
)
Get-AppxPackage | Where-Object { $_.Name -in $apps } | Remove-AppxPackage
Remove UWP pre-installed bloat. Note, this needs to run after the apps are installed, else they wont be removed.