← All Tweaks
GPU
Nvidia - Maximum Performance
Configure Nvidia GPU for maximum gaming performance
Benefit
Improved GPU performance and reduced power management overhead
Impact
highCommands (9)
$path = "HKLM:\SYSTEM\CurrentControlSet\Control\Class\{4d36e968-e325-11ce-bfc1-08002be10318}\0000"if (-not (Test-Path $path)) { New-Item -Path $path -Force | Out-Null }New-ItemProperty -Path $path -Name "PerfLevelSrc" -PropertyType DWord -Value 8738 -Force
New-ItemProperty -Path $path -Name "PowerMizerEnable" -PropertyType DWord -Value 0 -Force
New-ItemProperty -Path $path -Name "PowerMizerLevel" -PropertyType DWord -Value 1 -Force
New-ItemProperty -Path $path -Name "PowerMizerLevelAC" -PropertyType DWord -Value 1 -Force
$path = "HKLM:\SYSTEM\CurrentControlSet\Control\GraphicsDrivers\Scheduler"
if (-not (Test-Path $path)) { New-Item -Path $path -Force | Out-Null }New-ItemProperty -Path $path -Name "EnablePreemption" -PropertyType DWord -Value 0 -Force | Out-Null