Vous avez un écran 144Hz mais vous êtes bloqué à 60 FPS ? Ces tweaks sont conçus pour les gamers compétitifs qui veulent exploiter pleinement leur matériel.
Tweak 1 : Activer Ultimate Performance
🎮 Gain attendu : +5-10 FPS
powercfg -duplicatescheme e9a42b02-d5df-448d-aa00-03f14749eb61
powercfg /setactive e9a42b02-d5df-448d-aa00-03f14749eb61
Tweak 2 : Désactiver fullscreen optimizations
🎮 Gain attendu : +5-15 FPS
# Pour un jeu spécifique : clic droit > Propriétés > Compatibilité
# Ou globalement :
Set-ItemProperty -Path "HKCU:\System\GameConfigStore" -Name "GameDVR_FSEBehavior" -Value 2
Set-ItemProperty -Path "HKCU:\System\GameConfigStore" -Name "GameDVR_HonorUserFSEBehaviorMode" -Value 1
Set-ItemProperty -Path "HKCU:\System\GameConfigStore" -Name "GameDVR_FSEBehaviorMode" -Value 2
Tweak 3 : Priorité CPU gaming
🎮 Gain attendu : +3-8 FPS, moins de stuttering
Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\PriorityControl" -Name "Win32PrioritySeparation" -Value 38
Tweak 4 : Désactiver HPET
🎮 Gain attendu : +2-10 FPS (varie selon le système)
bcdedit /deletevalue useplatformclock
Tweak 5 : Accélération GPU planifiée
🎮 Gain attendu : +2-5 FPS, input lag réduit
Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\GraphicsDrivers" -Name "HwSchMode" -Value 2
Tweak 6 : Désactiver Game DVR
🎮 Gain attendu : +5-15 FPS
Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\GameDVR" -Name "AppCaptureEnabled" -Value 0
Set-ItemProperty -Path "HKCU:\System\GameConfigStore" -Name "GameDVR_Enabled" -Value 0
Tweak 7 : Optimiser la RAM pour le gaming
🎮 Gain attendu : Moins de stuttering
# Désactiver SysMain (SuperFetch)
Stop-Service -Name "SysMain" -Force
Set-Service -Name "SysMain" -StartupType Disabled
# Optimiser la gestion mémoire
Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management" -Name "LargeSystemCache" -Value 0
Tweak 8 : Réduire l'input lag
🎮 Gain attendu : -5-15ms de latence
# Désactiver Nagle's Algorithm
$adapters = Get-NetAdapter | Where-Object {$_.Status -eq "Up"}
foreach ($adapter in $adapters) {
$guid = (Get-NetAdapterAdvancedProperty -Name $adapter.Name -RegistryKeyword "NetCfgInstanceId" -ErrorAction SilentlyContinue).RegistryValue
if ($guid) {
$path = "HKLM:\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\Interfaces\$guid"
Set-ItemProperty -Path $path -Name "TcpAckFrequency" -Value 1 -ErrorAction SilentlyContinue
Set-ItemProperty -Path $path -Name "TCPNoDelay" -Value 1 -ErrorAction SilentlyContinue
}
}
Script complet 60→144 FPS
# SCRIPT COMPLET - De 60 à 144 FPS
# Exécuter en tant qu'administrateur
# Plan alimentation
powercfg -duplicatescheme e9a42b02-d5df-448d-aa00-03f14749eb61
powercfg /setactive e9a42b02-d5df-448d-aa00-03f14749eb61
# Priorité CPU
Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\PriorityControl" -Name "Win32PrioritySeparation" -Value 38
# Désactiver Game DVR
Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\GameDVR" -Name "AppCaptureEnabled" -Value 0
Set-ItemProperty -Path "HKCU:\System\GameConfigStore" -Name "GameDVR_Enabled" -Value 0
# Fullscreen optimizations
Set-ItemProperty -Path "HKCU:\System\GameConfigStore" -Name "GameDVR_FSEBehavior" -Value 2
# GPU scheduling
Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\GraphicsDrivers" -Name "HwSchMode" -Value 2
# Désactiver services inutiles
Stop-Service -Name "SysMain" -Force -ErrorAction SilentlyContinue
Set-Service -Name "SysMain" -StartupType Disabled
Write-Host "Optimisations appliquées ! Redémarrez pour activer." -ForegroundColor Green
Automatisez ces optimisations
Utilisez WindowsBooster pour appliquer ces tweaks en quelques clics
Lancer l'Application
Sommaire