← 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 (3)
$path = "HKLM:\SYSTEM\CurrentControlSet\Control\PriorityControl"
New-ItemProperty -Path $path -Name "IRQ8Priority" -PropertyType DWord -Value 1 -Force
New-ItemProperty -Path $path -Name "IRQ16Priority" -PropertyType DWord -Value 2 -Force