CUESTIONARIO Contacte con nosotros
CUESTIONARIO

Write-Log "`nDisabling telemetry services..." -Color Cyan $telemetryServices = @( "DiagTrack", "dmwappushservice", "diagnosticshub.standardcollector.service" )

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

Write-Log "`nRemoving provisioned packages for new users..." -Color Cyan foreach ($app in $bloatwareApps) try $provisioned = Get-AppxProvisionedPackage -Online catch Write-Log "FAILED: Could not remove provisioned package $app - $ " -Color Red

catch Write-Log "FAILED: Could not remove $app - $_" -Color Red $failed += $app

# Third-party bloat (manufacturer-specific) "Clipchamp.Clipchamp", "EclipseManager", "ActiproSoftwareLLC", "AdobeSystemsIncorporated.AdobePhotoshopExpress", "AdobeSystemsIncorporated.AdobeCreativeCloudExpress",