Skip to content

Instantly share code, notes, and snippets.

@wwilliams
Last active December 29, 2020 15:55
Show Gist options
  • Save wwilliams/983d1a2c06ad9fa0449874372fa42ea7 to your computer and use it in GitHub Desktop.
Save wwilliams/983d1a2c06ad9fa0449874372fa42ea7 to your computer and use it in GitHub Desktop.
$appname = @(
"*3DBuilder*"
"*Appconnector*"
"*Bing*"
#"*DesktopAppInstaller*"
"*GetHelp*"
"*Getstarted*"
#"*HEVCVideoExtension*"
"*Messaging*"
"*Microsoft3DViewer*"
"*MicrosoftOfficeHub*"
"*MicrosoftSolitaireCollection*"
"*OneNote*"
"*OneConnect*"
"*People*"
"*Print3D*"
"*SkypeApp*"
#"*StorePurchaseApp*"
"*Wallet*"
"*Photos*"
"*WindowsCamera*"
"*windowscommunicationsapps*"
"*WindowsFeedbackHub*"
"*WindowsMaps*"
"*WindowsSoundRecorder*"
#"*Xbox*"
"*ZuneMusic*"
"*ZuneVideo*"
"*MarchofEmpires*"
"*Saga*"
"*Duolingo*"
"*Keeper*"
"*EclipseManager*"
"*PowerBI*"
"*NetworkSpeedTest*"
"*Sway*"
"*Plex*"
"*Advertising*"
"*AdobePhotoshopExpress*"
"*Pandora*"
"*WindowsPhone*"
"*WindowsDVDPlayer*"
"*CommsPhone*"
"*Saga*"
"*MarchofEmpires*"
"*Disney*"
"*Spotify*"
"*HiddenCityMysteryofShadows*"
"*Autodesk*"
"*MixedReality.Portal*"
"*Microsoft.YourPhone*"
)
ForEach($app in $appname){
Get-AppxProvisionedPackage -Online | where {$_.PackageName -like $app} | Remove-AppxProvisionedPackage -Online -ErrorAction SilentlyContinue
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment