Created
October 11, 2015 20:56
-
-
Save scuq/e2c65f4ee4bfe11c0a83 to your computer and use it in GitHub Desktop.
remove provisioned (built-in) apps in windows 8/10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$AppList = "Microsoft.BingFinance", | |
"Microsoft.3DBuilder", | |
"Microsoft.Appconnector", | |
"Microsoft.BingFoodAndDrink", | |
"Microsoft.Getstarted", | |
"Microsoft.MicrosoftOfficeHub", | |
"Microsoft.MicrosoftSolitaireCollection", | |
"Microsoft.Office.OneNote", | |
"Microsoft.People", | |
"Microsoft.Windows.Photos", | |
"Microsoft.People", | |
"Microsoft.BingHealthAndFitness", | |
"Microsoft.WindowsMaps", | |
"Microsoft.WindowsPhone", | |
"Microsoft.ZuneMusic", | |
"Microsoft.ZuneVideo", | |
"Microsoft.XboxApp", | |
"Microsoft.BingNews", | |
"Microsoft.BingSports", | |
"Microsoft.BingTravel", | |
"Microsoft.BingWeather", | |
"Microsoft.HelpAndTips", | |
"Microsoft.Reader", | |
"Microsoft.SkypeApp", | |
"Microsoft.WindowsAlarms", | |
"Microsoft.WindowsCalculator", | |
"microsoft.windowscommunicationsapps", | |
"Microsoft.WindowsReadingList", | |
"Microsoft.WindowsScan", | |
"Microsoft.WindowsSoundRecorder", | |
"Microsoft.XboxLIVEGames", | |
"Microsoft.ZuneMusic", | |
"Microsoft.ZuneVideo" | |
ForEach ($App in $AppList) { | |
$AppxPackage = Get-AppxProvisionedPackage -online | Where {$_.DisplayName -eq $App} | |
Remove-AppxProvisionedPackage -online -packagename ($AppxPackage.PackageName) | |
Remove-AppxPackage ($AppxPackage.PackageName) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment