← All Tweaks
System Responsiveness
Configure Task Priority
Set thread priority for games task
Benefit
Ensures game threads get high priority
Impact
mediumCommands (3)
$path = "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Multimedia\SystemProfile\Tasks\Games"
if (-not (Test-Path $path)) { New-Item -Path $path -Force | Out-Null }New-ItemProperty -Path $path -Name "Priority" -PropertyType DWord -Value 6 -Force