Update removeapps.ps1

This commit is contained in:
matthieu 2026-01-27 20:46:57 -05:00
parent c101777539
commit 91cd4c91f4
2 changed files with 20 additions and 0 deletions

View file

20
removeapps.ps1 Normal file
View file

@ -0,0 +1,20 @@
$appsToRemove = @(
"Microsoft.ZuneVideo",
"MicrosoftTeams",
"Microsoft.GamingApp",
"Microsoft.XboxApp",
"Microsoft.XboxGameOverlay",
"Microsoft.XboxGamingOverlay",
"Microsoft.XboxIdentityProvider",
"Microsoft.XboxSpeechToTextOverlay",
"Microsoft.MixedReality.Portal",
"Microsoft.GetHelp",
"Microsoft.Getstarted",
"Microsoft.WindowsFeedbackHub",
"Microsoft.YourPhone",
"Microsoft.MicrosoftSolitaireCollection"
)
foreach ($app in $appsToRemove) {
Get-AppxPackage -Name $app -ErrorAction SilentlyContinue | Remove-AppxPackage -ErrorAction SilentlyContinue
}