All Tweaks

System Responsiveness

Apply Complete Gaming Profile

Apply all gaming optimization settings at once

Benefit

Comprehensive gaming optimization in one script

Impact

high

Commands (12)

# Set SystemResponsiveness to 0
$profilePath = "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Multimedia\SystemProfile"
New-ItemProperty -Path $profilePath -Name "SystemResponsiveness" -PropertyType DWord -Value 0 -Force
# Configure Games task
$gamesPath = "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Multimedia\SystemProfile\Tasks\Games"
New-ItemProperty -Path $gamesPath -Name "GPU Priority" -PropertyType DWord -Value 8 -Force
New-ItemProperty -Path $gamesPath -Name "Scheduling Category" -PropertyType String -Value "High" -Force
New-ItemProperty -Path $gamesPath -Name "SFIO Priority" -PropertyType String -Value "High" -Force
New-ItemProperty -Path $gamesPath -Name "Priority" -PropertyType DWord -Value 6 -Force
New-ItemProperty -Path $gamesPath -Name "Affinity" -PropertyType DWord -Value 0 -Force
New-ItemProperty -Path $gamesPath -Name "Background Only" -PropertyType String -Value "False" -Force
New-ItemProperty -Path $gamesPath -Name "Clock Rate" -PropertyType DWord -Value 2710 -Force