← All Tweaks
Latency & Timers
Configure IRQ Priority
Set high priority for network and GPU interrupt handling
Benefit
Ensures network and GPU interrupts are handled quickly
Impact
mediumCommands (4)
$path = "HKLM:\SYSTEM\CurrentControlSet\Control\PriorityControl"
if (-not (Test-Path $path)) { New-Item -Path $path -Force | Out-Null }New-ItemProperty -Path $path -Name "IRQ8Priority" -PropertyType DWord -Value 1 -Force
New-ItemProperty -Path $path -Name "IRQ16Priority" -PropertyType DWord -Value 2 -Force