foreach ($service in $telemetryServices) try Stop-Service $service -Force -ErrorAction SilentlyContinue Set-Service $service -StartupType Disabled -ErrorAction SilentlyContinue Write-Log "SUCCESS: Disabled $service" -Color Green
# Third-party bloat (manufacturer-specific) "Clipchamp.Clipchamp", "EclipseManager", "ActiproSoftwareLLC", "AdobeSystemsIncorporated.AdobePhotoshopExpress", "AdobeSystemsIncorporated.AdobeCreativeCloudExpress", powershell script to remove windows 11 bloatware
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 powershell script to remove windows 11 bloatware
# Productivity bloat (user-specific) "Microsoft.MixedReality.Portal", "Microsoft.GetHelp", "Microsoft.Getstarted", "Microsoft.MicrosoftOfficeHub", "Microsoft.MicrosoftSolitaireCollection", "Microsoft.MicrosoftStickyNotes", "Microsoft.MSPaint", "Microsoft.Office.OneNote", "Microsoft.People", "Microsoft.SkypeApp", "Microsoft.Windows.DevHome", "Microsoft.WindowsAlarms", "Microsoft.WindowsCamera", "Microsoft.WindowsCommunicationsApps", "Microsoft.WindowsFeedbackHub", "Microsoft.WindowsMaps", "Microsoft.WindowsSoundRecorder", "Microsoft.YourPhone", "Microsoft.ZuneMusic", "Microsoft.ZuneVideo", powershell script to remove windows 11 bloatware
$removeOneDrive = Read-Host "`nDo you want to remove OneDrive? (Y/N)" if ($removeOneDrive -eq 'Y' -or $removeOneDrive -eq 'y') Write-Log "Removing OneDrive..." -Color Cyan try Stop-Process -Name OneDrive -Force -ErrorAction SilentlyContinue Start-Sleep -Seconds 2 $onedriveSetup = "$env:SYSTEMROOT\SysWOW64\OneDriveSetup.exe" if (Test-Path $onedriveSetup) & $onedriveSetup /uninstall Write-Log "SUCCESS: OneDrive removed" -Color Green
catch Write-Log "FAILED: Could not remove $app - $_" -Color Red $failed += $app