Skip to content

Instantly share code, notes, and snippets.

@lukemcgregor
Last active May 17, 2021 01:17
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save lukemcgregor/4a90e58a98d62fb3c9bd400137af747c to your computer and use it in GitHub Desktop.
Save lukemcgregor/4a90e58a98d62fb3c9bd400137af747c to your computer and use it in GitHub Desktop.
Remove windows 10 bloatware.
# This script will remove all the nonsense from your blank windows 10 install.
# comment or remove any of these you actually care about.
$bloatPackages = @(
# I normally keep these
#"windowscalculator",
#"photos",
#"windowscamera",
#"windowsstore",
#bye bye
"3dbuilder",
"windowsalarms",
"windowscommunicationsapps",
"officehub", # Get Office
"skypeapp",
"getstarted",
"zunemusic",
"windowsmaps",
"solitairecollection",
"bingfinance",
"zunevideo",
"Microsoft.BingNews",
"onenote",
"people",
"windowsphone",
"bingsports",
"soundrecorder",
"bingweather",
"Twitter",
"Microsoft.XboxSpeech",
"Microsoft.XboxApp",
"Microsoft.XboxGameOverlay",
"Microsoft.XboxIdentityProvider",
"Microsoft.WindowsFeedbackHub",
"Microsoft.Messaging",
"Microsoft.Microsoft3DViewer",
"Microsoft.MicrosoftStickyNotes",
"DesktopAppInstaller",
"KeeperSecurityInc.Keeper",
"ThumbmunkeysLtd.PhototasticCollage"
)
$bloatPackages | ForEach {
Get-AppxPackage "*$_*" | ForEach {
Write-Host "Removing $($_.Name)"
Remove-AppxPackage $_
}
}
& "C:\Windows\SysWOW64\OneDriveSetup.exe" "/uninstall"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment