All Tweaks

System Responsiveness

Configure SFIO Priority

Set System File I/O priority for games

Benefit

Prioritizes disk I/O for game asset loading

Impact

medium

Commands (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 "SFIO Priority" -PropertyType String -Value "High" -Force