Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124


This script deletes a list of unwanted applications for Windows 10/11 machines.
The list (contained in the $AppsList variable) is editable, so you can add or remove applications as required, just make sure you enter the correct application name.
this is the result of script execution:

make sure you run the script in administrator mode first.
Here’s the script:
Set-ExecutionPolicy RemoteSigned -Force
$AppsList = 'Microsoft.3DBuilder',
'Microsoft.BingFinance',
'Microsoft.BingNews',
"Microsoft.News",
'Microsoft.BingSports',
'Microsoft.MicrosoftSolitaireCollection',
'Microsoft.People',
"Microsoft.SkypeApp",
"Microsoft.StorePurchaseApp",
'microsoft.windowscommunicationsapps',
'Microsoft.WindowsPhone',
'Microsoft.WindowsSoundRecorder',
"Microsoft.Xbox.TCUI",
'Microsoft.XboxApp',
"Microsoft.XboxGameOverlay",
"Microsoft.XboxGamingOverlay",
"Microsoft.XboxGameCallableUI",
"Microsoft.XboxIdentityProvider",
"Microsoft.XboxSpeechToTextOverlay",
'Microsoft.ZuneMusic',
'Microsoft.ZuneVideo',
'Microsoft.Getstarted',
'Microsoft.WindowsFeedbackHub',
'Microsoft.MicrosoftOfficeHub',
#Sponsored Windows 10/11 AppX Apps
"*EclipseManager*",
"*ActiproSoftwareLLC*",
"*AdobeSystemsIncorporated.AdobePhotoshopExpress*",
"*Duolingo-LearnLanguagesforFree*",
"*PandoraMediaInc*",
"*CandyCrush*",
"*BubbleWitch3Saga*",
"*Wunderlist*",
"*Flipboard*",
"*Twitter*",
"*Facebook*",
"*Spotify*",
"*Minecraft*",
"*Royal Revolt*",
"*Sway*",
"*Speed Test*",
"*Netflix*",
"*Roblox*",
"*TikTok*"
ForEach ($App in $AppsList)
{
$PackageFullName = (Get-AppxPackage $App).PackageFullName
$ProPackageFullName = (Get-AppxProvisionedPackage -online | Where-Object {$_.Displayname -eq $App}).PackageName
write-host $PackageFullName
Write-Host $ProPackageFullName
if ($PackageFullName)
{
Write-Host "Removing Package: $App" -ForegroundColor Green
remove-AppxPackage -package $PackageFullName
}
if ($ProPackageFullName)
{
Write-Host "Removing Provisioned Package: $ProPackageFullName" -ForegroundColor Green
Remove-AppxProvisionedPackage -online -packagename $ProPackageFullName
}
}
Thanks