Skip to content

Unwanted Pre-Installed Apps - Remove

config/tweaks.json
802  "WPFTweaksDeBloat": {
803    "Content": "Unwanted Pre-Installed Apps - Remove",
804    "Description": "This will remove a bunch of Windows pre-installed applications which most people dont want on there system.",
805    "category": "z__Advanced Tweaks - CAUTION",
806    "panel": "1",
807    "appx": [
808      "Microsoft.WindowsFeedbackHub",
809      "Microsoft.BingNews",
810      "Microsoft.BingSearch",
811      "Microsoft.BingWeather",
812      "Clipchamp.Clipchamp",
813      "Microsoft.Todos",
814      "Microsoft.PowerAutomateDesktop",
815      "Microsoft.MicrosoftSolitaireCollection",
816      "Microsoft.WindowsSoundRecorder",
817      "Microsoft.MicrosoftStickyNotes",
818      "Microsoft.Windows.DevHome",
819      "Microsoft.Paint",
820      "Microsoft.OutlookForWindows",
821      "Microsoft.WindowsAlarms",
822      "Microsoft.StartExperiencesApp",
823      "Microsoft.GetHelp",
824      "Microsoft.ZuneMusic",
825      "MicrosoftCorporationII.QuickAssist",
826      "MSTeams"
827    ],
828    "InvokeScript": [
829      "
830      $TeamsPath = \"$Env:LocalAppData\\Microsoft\\Teams\\Update.exe\"
831
832      if (Test-Path $TeamsPath) {
833        Write-Host \"Uninstalling Teams\"
834        Start-Process $TeamsPath -ArgumentList -uninstall -wait
835
836        Write-Host \"Deleting Teams directory\"
837        Remove-Item $TeamsPath -Recurse -Force
838      }
839      "
840    ],