Inicio / Seguridad para Gaming

🛡️ Seguridad para Gaming

Ajustar Windows Defender, UAC y políticas para mejorar rendimiento

🔰 Configurar Windows Defender

⚠️

⚠️ Advertencia de Seguridad

Desactivar protección en tiempo real reduce seguridad significativamente. Solo hazlo si usas antivirus alternativo o PC exclusivo para gaming sin navegación web.

Desactivar protección en tiempo real powershell
Set-MpPreference -DisableRealtimeMonitoring $true
Agregar exclusiones de carpetas powershell
Add-MpPreference -ExclusionPath "C:\Games"
Add-MpPreference -ExclusionPath "C:\Program Files (x86)\Steam"
Add-MpPreference -ExclusionPath "$env:USERPROFILE\Documents\My Games"

🔐 Desactivar UAC

UAC puede causar pausas en juegos. Desactivarlo mejora experiencia:

Deshabilitar prompts UAC powershell
New-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" -Name "EnableLUA" -PropertyType DWord -Value 0 -Force
Alternativa: reducir nivel UAC powershell
New-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" -Name "ConsentPromptBehaviorAdmin" -PropertyType DWord -Value 0 -Force
⚠️

⚠️ Seguridad UAC

Deshabilitar UAC permite que malware instale programas sin confirmación. Solo desactiva si confías completamente en tus prácticas de seguridad.

🚫 Desactivar Smart Screen

SmartScreen Filter powershell
New-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer" -Name "SmartScreenEnabled" -PropertyType String -Value "Off" -Force
SmartScreen de Edge y Store powershell
New-ItemProperty -Path "HKCU:\Software\Microsoft\Edge\SmartScreenEnabled" -Name "(Default)" -PropertyType DWord -Value 0 -Force
New-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\AppHost" -Name "EnableWebContentEvaluation" -PropertyType DWord -Value 0 -Force

🔥 Desactivar completamente Defender

Para máximo rendimiento, deshabilitar completamente (requiere reinicio en Modo Seguro):

Deshabilitar servicios Defender powershell
$services = @("WinDefend", "SecurityHealthService", "Sense", "WdNisSvc")
foreach ($service in $services) {
    Stop-Service -Name $service -Force -ErrorAction SilentlyContinue
    Set-Service -Name $service -StartupType Disabled -ErrorAction SilentlyContinue
}
Registro: desactivar antivirus powershell
New-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender" -Name "DisableAntiSpyware" -PropertyType DWord -Value 1 -Force
New-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows Defender\Real-Time Protection" -Name "DisableRealtimeMonitoring" -PropertyType DWord -Value 1 -Force
💡

💡 Defender Control

Usa Defender Control de Sordum.org para activar/desactivar Defender fácilmente sin editar registro manualmente.

🛡️ Desactivar Game Mode y DVR

Game Bar y Game DVR powershell
New-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\GameDVR" -Name "AppCaptureEnabled" -PropertyType DWord -Value 0 -Force
New-ItemProperty -Path "HKCU:\System\GameConfigStore" -Name "GameDVR_Enabled" -PropertyType DWord -Value 0 -Force
Game Mode (puede ayudar o perjudicar) powershell
New-ItemProperty -Path "HKCU:\Software\Microsoft\GameBar" -Name "AutoGameModeEnabled" -PropertyType DWord -Value 0 -Force
💡

💡 Game Mode

Algunos juegos se benefician de Game Mode, otros no. Prueba activado y desactivado para ver cuál funciona mejor para ti.

🔒 Deshabilitar Sandbox y Virtualization

Sandbox y HVCI powershell
Disable-WindowsOptionalFeature -Online -FeatureName "Containers-DisposableClientVM" -NoRestart
New-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\DeviceGuard\Scenarios\HypervisorEnforcedCodeIntegrity" -Name "Enabled" -PropertyType DWord -Value 0 -Force
Credential Guard powershell
New-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\Lsa" -Name "LsaCfgFlags" -PropertyType DWord -Value 0 -Force

🔑 BitLocker

Deshabilitar BitLocker (si está activo) powershell
Disable-BitLocker -MountPoint "C:"

BitLocker agrega overhead de cifrado que reduce rendimiento en algunos casos.

⚠️

⚠️ IMPORTANTE

Deshabilitar funciones de seguridad expone tu PC a riesgos. Solo aplica estas optimizaciones en un PC dedicado exclusivamente a gaming offline o con medidas de seguridad alternativas robustas.