Skip to content

Commit

Permalink
Added fresh-installation-cheatsheet.
Browse files Browse the repository at this point in the history
  • Loading branch information
Silvenga committed Dec 17, 2017
1 parent 8a9e7b6 commit e151636
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions input/posts/fresh-installation-cheatsheet.md
@@ -0,0 +1,26 @@
Title: Fresh Installation Cheatsheet
Description: A personal cheatsheat for some things to do when installing Windows fresh.
---

^^^
```ps1
$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.

0 comments on commit e151636

Please sign in to comment.