Update removeapps.ps1
This commit is contained in:
parent
c101777539
commit
91cd4c91f4
2 changed files with 20 additions and 0 deletions
20
removeapps.ps1
Normal file
20
removeapps.ps1
Normal 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
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue