Windows App store App removal / Management
# This script tries to remove what I have seen as most common not needed with 10 apps.
# any other suggestion to make windows 10 enterprise lean
Set-ExecutionPolicy -ExecutionPolicy Bypass -Force -Scope CurrentUser
$apps = @(
#third party non-microsoft apps
# non-Microsoft
"9E2F88E3.Twitter"
"PandoraMediaInc.29680B314EFC2"
"Flipboard.Flipboard"
"ShazamEntertainmentLtd.Shazam"
"king.com.CandyCrushSaga"
"king.com.CandyCrushSodaSaga"
"king.com.*"
"ClearChannelRadioDigital.iHeartRadio"
"4DF9E0F8.Netflix"
"6Wunderkinder.Wunderlist"
"Drawboard.DrawboardPDF"
"2FE3CB00.PicsArt-PhotoStudio"
"D52A8D61.FarmVille2CountryEscape"
"TuneIn.TuneInRadio"
"GAMELOFTSA.Asphalt8Airborne"
#"TheNewYorkTimes.NYTCrossword"
"DB6EA5DB.CyberLinkMediaSuiteEssentials"
"Facebook.Facebook"
"flaregamesGmbH.RoyalRevolt2"
"Playtika.CaesarsSlotsFreeCasino"
#microsoft
"Microsoft.BingFoodAndDrink"
"Microsoft.BingTravel"
"Microsoft.BingHealthAndFitness"
"Microsoft.WindowsReadingList"
"*windowscommunicationsapps*"
"*skypeapp*"
"*onenote*"
"*people*"
"*bingsports*"
"*zunevideo*"
"Microsoft.CommsPhone"
"Microsoft.ConnectivityStore"
"Microsoft.Messaging"
"Microsoft.Office.Sway"
"Microsoft.OneConnect"
"Microsoft.WindowsFeedbackHub"
"*solitairecollection*"
"Microsoft.XboxApp"
)
foreach ($app in $apps)
{
Get-AppxPackage $app -AllUsers | Remove-AppxPackage -AllUsers
}
# any other suggestion to make windows 10 enterprise lean
Set-ExecutionPolicy -ExecutionPolicy Bypass -Force -Scope CurrentUser
$apps = @(
#third party non-microsoft apps
# non-Microsoft
"9E2F88E3.Twitter"
"PandoraMediaInc.29680B314EFC2"
"Flipboard.Flipboard"
"ShazamEntertainmentLtd.Shazam"
"king.com.CandyCrushSaga"
"king.com.CandyCrushSodaSaga"
"king.com.*"
"ClearChannelRadioDigital.iHeartRadio"
"4DF9E0F8.Netflix"
"6Wunderkinder.Wunderlist"
"Drawboard.DrawboardPDF"
"2FE3CB00.PicsArt-PhotoStudio"
"D52A8D61.FarmVille2CountryEscape"
"TuneIn.TuneInRadio"
"GAMELOFTSA.Asphalt8Airborne"
#"TheNewYorkTimes.NYTCrossword"
"DB6EA5DB.CyberLinkMediaSuiteEssentials"
"Facebook.Facebook"
"flaregamesGmbH.RoyalRevolt2"
"Playtika.CaesarsSlotsFreeCasino"
#microsoft
"Microsoft.BingFoodAndDrink"
"Microsoft.BingTravel"
"Microsoft.BingHealthAndFitness"
"Microsoft.WindowsReadingList"
"*windowscommunicationsapps*"
"*skypeapp*"
"*onenote*"
"*people*"
"*bingsports*"
"*zunevideo*"
"Microsoft.CommsPhone"
"Microsoft.ConnectivityStore"
"Microsoft.Messaging"
"Microsoft.Office.Sway"
"Microsoft.OneConnect"
"Microsoft.WindowsFeedbackHub"
"*solitairecollection*"
"Microsoft.XboxApp"
)
foreach ($app in $apps)
{
Get-AppxPackage $app -AllUsers | Remove-AppxPackage -AllUsers
}
0 Comments
[ + ] Show comments
Answers (1)
Please log in to answer
Posted by:
ViciousXUSMC
7 years ago