Remove all Microsoft Store apps
config/tweaks.json
1676 "WPFTweaksDeBloat": {
1677 "Content": "Remove all Microsoft Store apps",
1678 "Description": "This will remove a bunch of Windows pre-installed applications which most people dont want on there system.",
1679 "category": "z__Advanced Tweaks - CAUTION",
1680 "panel": "1",
1681 "appx": [
1682 "Microsoft.Microsoft3DViewer",
1683 "Microsoft.AppConnector",
1684 "Microsoft.BingFinance",
1685 "Microsoft.BingNews",
1686 "Microsoft.BingSports",
1687 "Microsoft.BingTranslator",
1688 "Microsoft.BingWeather",
1689 "Microsoft.BingFoodAndDrink",
1690 "Microsoft.BingHealthAndFitness",
1691 "Microsoft.BingTravel",
1692 "Clipchamp.Clipchamp",
1693 "Microsoft.Todos",
1694 "MicrosoftCorporationII.QuickAssist",
1695 "Microsoft.MicrosoftStickyNotes",
1696 "Microsoft.GetHelp",
1697 "Microsoft.GetStarted",
1698 "Microsoft.Messaging",
1699 "Microsoft.MicrosoftSolitaireCollection",
1700 "Microsoft.NetworkSpeedTest",
1701 "Microsoft.News",
1702 "Microsoft.Office.Lens",
1703 "Microsoft.Office.Sway",
1704 "Microsoft.Office.OneNote",
1705 "Microsoft.OneConnect",
1706 "Microsoft.People",
1707 "Microsoft.Print3D",
1708 "Microsoft.SkypeApp",
1709 "Microsoft.Wallet",
1710 "Microsoft.Whiteboard",
1711 "Microsoft.WindowsAlarms",
1712 "Microsoft.WindowsCommunicationsApps",
1713 "Microsoft.WindowsFeedbackHub",
1714 "Microsoft.WindowsMaps",
1715 "Microsoft.WindowsSoundRecorder",
1716 "Microsoft.ConnectivityStore",
1717 "Microsoft.ScreenSketch",
1718 "Microsoft.MixedReality.Portal",
1719 "Microsoft.ZuneMusic",
1720 "Microsoft.ZuneVideo",
1721 "Microsoft.MicrosoftOfficeHub",
1722 "MsTeams",
1723 "*EclipseManager*",
1724 "*ActiproSoftwareLLC*",
1725 "*AdobeSystemsIncorporated.AdobePhotoshopExpress*",
1726 "*Duolingo-LearnLanguagesforFree*",
1727 "*PandoraMediaInc*",
1728 "*CandyCrush*",
1729 "*BubbleWitch3Saga*",
1730 "*Wunderlist*",
1731 "*Flipboard*",
1732 "*Twitter*",
1733 "*Facebook*",
1734 "*Royal Revolt*",
1735 "*Sway*",
1736 "*Speed Test*",
1737 "*Dolby*",
1738 "*Viber*",
1739 "*ACGMediaPlayer*",
1740 "*Netflix*",
1741 "*OneCalendar*",
1742 "*LinkedInForWindows*",
1743 "*HiddenCityMysteryofShadows*",
1744 "*Hulu*",
1745 "*HiddenCity*",
1746 "*AdobePhotoshopExpress*",
1747 "*HotspotShieldFreeVPN*",
1748 "*Microsoft.Advertising.Xaml*"
1749 ],
1750 "InvokeScript": [
1751 "
1752 $TeamsPath = \"$Env:LocalAppData\\Microsoft\\Teams\\Update.exe\"
1753
1754 if (Test-Path $TeamsPath) {
1755 Write-Host \"Uninstalling Teams\"
1756 Start-Process $TeamsPath -ArgumentList -uninstall -wait
1757
1758 Write-Host \"Deleting Teams directory\"
1759 Remove-Item $TeamsPath -Recurse -Force
1760 }
1761 "
1762 ],