Skip to content

Unwanted Pre-Installed Apps - Remove

config/tweaks.json
849  "WPFTweaksDeBloat": {
850    "Content": "Unwanted Pre-Installed Apps - Remove",
851    "Description": "This will remove a bunch of Windows pre-installed applications which most people dont want on their system.",
852    "category": "Essential Tweaks",
853    "panel": "1",
854    "appx": [
855      "Microsoft.WindowsFeedbackHub",
856      "Microsoft.BingNews",
857      "Microsoft.BingSearch",
858      "Microsoft.BingWeather",
859      "Clipchamp.Clipchamp",
860      "Microsoft.Todos",
861      "Microsoft.PowerAutomateDesktop",
862      "Microsoft.MicrosoftSolitaireCollection",
863      "Microsoft.WindowsSoundRecorder",
864      "Microsoft.MicrosoftStickyNotes",
865      "Microsoft.Windows.DevHome",
866      "Microsoft.Paint",
867      "Microsoft.OutlookForWindows",
868      "Microsoft.WindowsAlarms",
869      "Microsoft.StartExperiencesApp",
870      "Microsoft.GetHelp",
871      "Microsoft.ZuneMusic",
872      "MicrosoftCorporationII.QuickAssist",
873      "MSTeams"
874    ],
875    "InvokeScript": [
876      "
877      $TeamsPath = \"$Env:LocalAppData\\Microsoft\\Teams\\Update.exe\"
878
879      if (Test-Path $TeamsPath) {
880        Write-Host \"Uninstalling Teams\"
881        Start-Process $TeamsPath -ArgumentList -uninstall -wait
882
883        Write-Host \"Deleting Teams directory\"
884        Remove-Item $TeamsPath -Recurse -Force
885      }
886      "
887    ],