WINDOWS 11 ULTRALIGHT PARA EQUIPOS LENTOS (HDD + CELERON)

SCRIPT ULTRALIGHT, pensado para sacar el máximo rendimiento posible a un equipo Celeron + HDD, sacrificando animaciones, búsquedas rápidas, apps modernas y varios servicios secundarios.
Sigue siendo seguro, no toca nada crítico del sistema.

Este es el script más rápido que se puede hacer sin dañar Windows.

INSTRUCCIONES

  1. Abre PowerShell como Administrador
  2. Copia/pega TODO el script
  3. Presiona Enter
  4. Reinicia
# ============================================================
# WINDOWS 11 ULTRALIGHT PARA EQUIPOS LENTOS (HDD + CELERON)
# ============================================================

Write-Host "Aplicando modo ULTRALIGHT... espera..." -ForegroundColor Yellow

# ---------- 1. DESACTIVAR SERVICIOS PESADOS ----------
$servicesToDisable = @(
"SysMain",
"WSearch",
"DiagTrack",
"WerSvc",
"RetailDemo",
"Fax",
"XblGameSave",
"XboxGipSvc",
"XboxNetApiSvc",
"RemoteRegistry",
"MapsBroker",
"PhoneSvc",
"SharedAccess",
"TabletInputService",
"tiledatamodelsvc",
"diagnosticshub.standardcollector.service"
)

foreach ($svc in $servicesToDisable) {
Write-Host "Desactivando servicio: $svc"
Stop-Service $svc -ErrorAction SilentlyContinue
Set-Service $svc -StartupType Disabled -ErrorAction SilentlyContinue
}

# ---------- 2. DESINSTALAR TODA APP MODERNA INNECESARIA ----------
Write-Host "Eliminando apps modernas innecesarias..."

Get-AppxPackage -AllUsers |
Where-Object { $_.Name -notlike "*Store*" -and $_.Name -notlike "*WindowsCalculator*" -and $_.Name -notlike "*Notepad*" } |
Remove-AppxPackage -ErrorAction SilentlyContinue

# ---------- 3. DESACTIVAR COMPLETAMENTE ANIMACIONES ----------
Write-Host "Quitando TODAS las animaciones..."
reg add "HKCU\Control Panel\Desktop" /v UserPreferencesMask /t REG_BINARY /d 9012078010000000 /f
reg add "HKCU\Control Panel\Desktop\WindowMetrics" /v MinAnimate /t REG_SZ /d 0 /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects" /v VisualFXSetting /t REG_DWORD /d 2 /f

# ---------- 4. DESACTIVAR TRANSPARENCIAS Y EFECTOS ----------
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Themes\Personalize" /v EnableTransparency /t REG_DWORD /d 0 /f
reg add "HKCU\Software\Microsoft\Windows\DWM" /v DisableTransitionsOnBattery /t REG_DWORD /d 1 /f
reg add "HKCU\Software\Microsoft\Windows\DWM" /v AlwaysHibernateThumbnails /t REG_DWORD /d 1 /f

# ---------- 5. DESACTIVAR APPS EN SEGUNDO PLANO ----------
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\BackgroundAccessApplications" /v GlobalUserDisabled /t REG_DWORD /d 1 /f

# ---------- 6. DESACTIVAR CORTANA, WIDGETS, COPILOT ----------
reg add "HKLM\Software\Policies\Microsoft\Windows\Windows Search" /v AllowCortana /t REG_DWORD /d 0 /f
reg add "HKLM\Software\Policies\Microsoft\Dsh" /v AllowNewsAndInterests /t REG_DWORD /d 0 /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v TaskbarWidgetsEnabled /t REG_DWORD /d 0 /f

# ---------- 7. DESACTIVAR INDEXACIÓN EN TODAS LAS UNIDADES ----------
$drives = Get-PSDrive -PSProvider FileSystem
foreach ($d in $drives) {
Write-Host "Quitando indexación de: $($d.Root)"
try {
$acl = Get-Acl $d.Root
$acl.SetAccessRuleProtection($true, $false)
} catch {}
}

# ---------- 8. DESACTIVAR SERVICIO DE IMPRESIÓN (si no usas impresora) ----------
Write-Host "Desactivando Print Spooler..."
Stop-Service "Spooler" -ErrorAction SilentlyContinue
Set-Service "Spooler" -StartupType Disabled -ErrorAction SilentlyContinue

# ---------- 9. REDUCIR TIEMPO DE APAGADO Y CUELGUES ----------
reg add "HKLM\SYSTEM\CurrentControlSet\Control" /v WaitToKillServiceTimeout /t REG_SZ /d 1500 /f
reg add "HKCU\Control Panel\Desktop" /v HungAppTimeout /t REG_SZ /d 1000 /f
reg add "HKCU\Control Panel\Desktop" /v WaitToKillAppTimeout /t REG_SZ /d 1000 /f

# ---------- 10. DESACTIVAR ELEMENTOS DE MULTITAREA ----------
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v EnableSnapAssistFlyout /t REG_DWORD /d 0 /f

# ---------- 11. DESACTIVAR TELEMETRÍA COMPLETA ----------
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\DataCollection" /v AllowTelemetry /t REG_DWORD /d 0 /f
reg add "HKLM\Software\Policies\Microsoft\Windows\DataCollection" /v DisableTelemetry /t REG_DWORD /d 1 /f

# ---------- 12. DESACTIVAR SONIDOS DEL SISTEMA (acelera interfaz) ----------
reg add "HKCU\AppEvents\Schemes" /v Default /t REG_SZ /d ".None" /f

# ---------- 13. AJUSTAR POWER PLAN ----------
powercfg -setactive SCHEME_MIN

# ---------- 14. LIMPIEZA INTENSA DE TEMPORALES ----------
Write-Host "Eliminando archivos temporales..."
Remove-Item -Path "C:\Windows\Temp\*" -Force -Recurse -ErrorAction SilentlyContinue
Remove-Item -Path "$env:TEMP\*" -Force -Recurse -ErrorAction SilentlyContinue
Remove-Item "C:\Users\*\AppData\Local\Temp\*" -Force -Recurse -ErrorAction SilentlyContinue

# ---------- 15. OPTIMIZAR INICIO ----------
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Serialize" /v StartupDelayInMSec /t REG_DWORD /d 0 /f

# ---------- 16. QUITAR EFECTOS DE SOMBRA Y AERO ----------
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v TaskbarAnimations /t REG_DWORD /d 0 /f
reg add "HKCU\Software\Microsoft\Windows\DWM" /v UseAnimations /t REG_DWORD /d 0 /f

# ---------- 17. OPTIMIZAR NETWORK (menos latencia / carga CPU) ----------
netsh int tcp set global autotuninglevel=disabled
netsh int tcp set global rss=disabled

# ---------- FIN ----------
Write-Host "MODO ULTRALIGHT COMPLETADO ?" -ForegroundColor Green
Write-Host "Reinicia para aplicar todo." -ForegroundColor Yellow

Resultado

Servicios desactivados

Reduce 60–70% procesos en segundo plano:

  • Búsqueda
  • Telemetría
  • Xbox
  • Servicios táctiles
  • Servicios de mapas
  • Impresora
  • Recolectores
  • Indexación
  • Diagnóstico de Microsoft
  • Registro remoto
  • Tiledatamodel (menú inicio)

Efectos visuales 0

  • Sin animaciones
  • Sin sombras
  • Sin transparencias

Apps modernas Fuera casi todas

Te queda solo lo esencial:

  • Calculadora
  • Tienda (por si necesitas)
  • Notepad

Sistema

  • Inicio sin retrasos
  • Apagado ultra rápido
  • Menos carga de CPU
  • Mucho menos uso de disco
  • Explorador más rápido

Ideal para:

  • Equipos con HDD
  • Celeron / Pentium
  • 4–8 GB RAM
  • Máximo rendimiento para navegar y trabajar

Comentarios

Dona a datakun
kakaroto84 Escrito por:

Un bibliotecario de anime y manga

Sé el primero en comentar

Deja una respuesta