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

# Third-party bloat (manufacturer-specific) "Clipchamp.Clipchamp", "EclipseManager", "ActiproSoftwareLLC", "AdobeSystemsIncorporated.AdobePhotoshopExpress", "AdobeSystemsIncorporated.AdobeCreativeCloudExpress", powershell script to remove windows 11 bloatware

Write-Log "`nDisabling telemetry services..." -Color Cyan $telemetryServices = @( "DiagTrack", "dmwappushservice", "diagnosticshub.standardcollector.service" ) (Y/N)" if ($removeOneDrive -eq 'Y' -or $removeOneDrive -eq

Write-Log "Starting Windows 11 Bloatware Removal Script" -Color Cyan Write-Host " nWARNING: This will remove bloatware applications from your system." -ForegroundColor Yellow Write-Host "A system restore point is recommended before proceeding. n" -ForegroundColor Yellow $confirmation = Read-Host "Do you want to continue? (Y/N)" powershell script to remove windows 11 bloatware

catch Write-Log "FAILED: Could not disable $service" -Color Red

catch Write-Log "FAILED: Could not remove OneDrive - $_" -Color Red

$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