Skip to content

Instantly share code, notes, and snippets.

@AnthonyVadala
Created January 29, 2019 15:39
Show Gist options
  • Save AnthonyVadala/9a0630b9c0afbfcc3bfdaaefc32e2548 to your computer and use it in GitHub Desktop.
Save AnthonyVadala/9a0630b9c0afbfcc3bfdaaefc32e2548 to your computer and use it in GitHub Desktop.
Debloat Windows - removes Windows 10 apps permanently. Updates/upgrades won't bring them back and new users will not get the apps.
$apps = @(
"07AF453C.IndexCards"
"2414FC7A.Viber"
"2FE3CB00.PicsArt-PhotoStudio"
"41038Axilesoft.ACGMediaPlayer"
"46928bounde.EclipseManager"
"4DF9E0F8.Netflix"
"64885BlueEdge.OneCalendar"
"6Wunderkinder.Wunderlist"
"7458BE2C.WorldofTanksBlitz"
"7EE7776C.LinkedInforWindows"
"8075Queenloft.BlendCollagePhotoEditor"
"828B5831.HiddenCityMysteryofShadows"
"89006A2E.AutodeskSketchBook"
"9E2F88E3.Twitter"
"A278AB0D.DisneyMagicKingdoms"
"A278AB0D.DragonManiaLegends"
"A278AB0D.MarchofEmpires"
"ActiproSoftwareLLC.562882FEEB491"
"AdobeSystemsIncorporated.AdobePhotoshopExpress"
"CAF9E577.Plex"
"ClearChannelRadioDigital.iHeartRadio"
"D52A8D61.FarmVille2CountryEscape"
"D5EA27B7.Duolingo-LearnLanguagesforFree"
"DB6EA5DB.CyberLinkMediaSuiteEssentials"
"DolbyLaboratories.DolbyAccess"
"Drawboard.DrawboardPDF"
"Facebook.317180B0BB486"
"Facebook.Facebook"
"Facebook.InstagramBeta"
"flaregamesGmbH.RoyalRevolt2"
"Flipboard.Flipboard"
"GAMELOFTSA.Asphalt8Airborne"
"KeeperSecurityInc.Keeper"
"king.com.BubbleWitch3Saga"
"king.com.CandyCrushSodaSaga"
"Microsoft.3DBuilder"
"Microsoft.Advertising.Xaml"
"Microsoft.Advertising.Xaml"
"Microsoft.AgeCastles"
"Microsoft.AppConnector"
"Microsoft.BingFinance"
"Microsoft.BingFoodAndDrink"
"Microsoft.BingHealthAndFitness"
"Microsoft.BingNews"
"Microsoft.BingSports"
"Microsoft.BingWeather"
"Microsoft.CommsPhone"
"Microsoft.ConnectivityStore"
"Microsoft.FreshPaint"
"Microsoft.Getstarted"
"Microsoft.Messaging"
"Microsoft.Microsoft3DViewer"
"Microsoft.MicrosoftMahjong"
"Microsoft.MicrosoftOfficeHub"
"Microsoft.MicrosoftPowerBIForWindows"
"Microsoft.MicrosoftSolitaireCollection"
"Microsoft.MicrosoftSudoku"
"Microsoft.MinecraftUWP"
"Microsoft.NetworkSpeedTest"
"Microsoft.Office.OneNote"
"Microsoft.Office.Sway"
"Microsoft.OneConnect"
"Microsoft.People"
"Microsoft.RemoteDesktop"
"Microsoft.SkypeApp"
"Microsoft.Windows.FeatureOnDemand.InsiderHub"
"Microsoft.WindowsAlarms"
"Microsoft.WindowsFeedbackHub"
"Microsoft.WindowsMaps"
"Microsoft.WindowsPhone"
"Microsoft.WindowsSoundRecorder"
"Microsoft.Xbox.TCUI"
"Microsoft.XboxApp"
"Microsoft.XboxGameOverlay"
"Microsoft.XboxIdentityProvider"
"Microsoft.XboxSpeechToTextOverlay"
"Microsoft.ZuneMusic"
"Microsoft.ZuneVideo"
"PandoraMediaInc.29680B314EFC2"
"Playtika.CaesarsSlotsFreeCasino"
"Psykosoft.Psykopaint"
"ShazamEntertainmentLtd.Shazam"
"TheNewYorkTimes.NYTCrossword"
"TuneIn.TuneInRadio"
"WinZipComputing.WinZipUniversal"
"XINGAG.XING"
#"Microsoft.MicrosoftStickyNotes"
#"Microsoft.Windows.HolographicFirstRun"
#"Microsoft.Windows.Photos"
#"Microsoft.WindowsCamera"
#"microsoft.windowscommunicationsapps"
)
foreach ($app in $apps) {
$package = Get-AppxPackage -Name $app -AllUsers
if ($package -ne $null) {
$package | Remove-AppxPackage -ErrorAction SilentlyContinue
Get-AppXProvisionedPackage -Online | Where-Object DisplayName -EQ $app | Remove-AppxProvisionedPackage -Online
$appPath = "$Env:LOCALAPPDATA\Packages\$app*"
Remove-Item $appPath -Recurse -Force -ErrorAction 0
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment