🛡️ 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.
Set-MpPreference -DisableRealtimeMonitoring $true 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:
New-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" -Name "EnableLUA" -PropertyType DWord -Value 0 -Force 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
New-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer" -Name "SmartScreenEnabled" -PropertyType String -Value "Off" -Force 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):
$services = @("WinDefend", "SecurityHealthService", "Sense", "WdNisSvc")
foreach ($service in $services) {
Stop-Service -Name $service -Force -ErrorAction SilentlyContinue
Set-Service -Name $service -StartupType Disabled -ErrorAction SilentlyContinue
} 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
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 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
Disable-WindowsOptionalFeature -Online -FeatureName "Containers-DisposableClientVM" -NoRestart
New-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\DeviceGuard\Scenarios\HypervisorEnforcedCodeIntegrity" -Name "Enabled" -PropertyType DWord -Value 0 -Force New-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\Lsa" -Name "LsaCfgFlags" -PropertyType DWord -Value 0 -Force 🔑 BitLocker
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.