Inicio / System Responsiveness

⚙️ System Responsiveness

Reducir CPU reservada para procesos en segundo plano y priorizar gaming

📋 ¿Qué es?

El servicio MMCSS (Multimedia Class Scheduler) reserva 20% de CPU por defecto para procesos en segundo plano. Esto significa que tus juegos solo pueden usar hasta 80% de CPU. Reducir este valor da más CPU a aplicaciones de gaming.

💻 Configurar SystemResponsiveness

Por defecto: 20 (20% CPU reservada)
Aplicaciones generales: 10
Gaming/Streaming: 0 (máxima prioridad)
Configurar para gaming (0 = máxima prioridad) powershell
New-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Multimedia\SystemProfile" -Name "SystemResponsiveness" -PropertyType DWord -Value 0 -Force

🎮 Configuración para Juegos

Configuraciones adicionales para juegos que usan MMCSS:

GPU Priority (0-31) powershell
$path = "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Multimedia\SystemProfile\Tasks\Games"
New-ItemProperty -Path $path -Name "GPU Priority" -PropertyType DWord -Value 8 -Force
Scheduling Category powershell
$path = "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Multimedia\SystemProfile\Tasks\Games"
New-ItemProperty -Path $path -Name "Scheduling Category" -PropertyType String -Value "High" -Force
SFIO Priority powershell
$path = "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Multimedia\SystemProfile\Tasks\Games"
New-ItemProperty -Path $path -Name "SFIO Priority" -PropertyType String -Value "High" -Force
Priority (1-8) powershell
$path = "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Multimedia\SystemProfile\Tasks\Games"
New-ItemProperty -Path $path -Name "Priority" -PropertyType DWord -Value 6 -Force
💡

💡 Valores Completos

Affinity: 0 (sin afinidad de procesador)

Background Only: False

Clock Rate: 2710 (10000 ns)

GPU Priority: 8 (rango 0-31)

Priority: 6 (rango 1-8)

Scheduling Category: High

SFIO Priority: High

⚠️

⚠️ Nota Importante

En Windows Server, SystemResponsiveness está en 100 por defecto, dando prioridad a servicios en segundo plano sobre aplicaciones multimedia.