# Telemetry and unwanted services "Microsoft.Wallet", "Microsoft.BingNews", "Microsoft.BingWeather", "Microsoft.BingSports", "Microsoft.BingFinance", "Microsoft.Microsoft3DViewer", "Microsoft.MicrosoftPowerBIForWindows", "Microsoft.MicrosoftTranslator" )
Write-Log "Found $($bloatwareApps.Count) target applications for removal" -Color Yellow $removed = @() $failed = @() Remove apps for current user Write-Log "Removing bloatware for current user..." -Color Cyan foreach ($app in $bloatwareApps) try $package = Get-AppxPackage -Name $app -ErrorAction SilentlyContinue if ($package) Remove-AppxPackage -Package $package -ErrorAction Stop Write-Log "SUCCESS: Removed $app" -Color Green $removed += $app powershell script to remove windows 11 bloatware
catch Write-Log "FAILED: Could not remove $app - $_" -Color Red $failed += $app # Telemetry and unwanted services "Microsoft
Write-Log "`n========== REMOVAL SUMMARY ==========" -Color Cyan Write-Log "Total apps targeted: $($bloatwareApps.Count)" -Color White Write-Log "Successfully removed: $($removed.Count)" -Color Green Write-Log "Failed to remove: $($failed.Count)" -Color Red # Telemetry and unwanted services "Microsoft.Wallet"