All Tweaks

🔧 Nagle Algorithm

Revert Nagle Changes

Remove Nagle algorithm modifications to return to defaults

Benefit

Allows reverting settings if they cause issues

Impact

medium

Commands (4)

$nicPath = "HKLM:\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\Interfaces\{NIC-GUID}"
Remove-ItemProperty -Path $nicPath -Name "TcpAckFrequency" -ErrorAction SilentlyContinue
Remove-ItemProperty -Path $nicPath -Name "TCPNoDelay" -ErrorAction SilentlyContinue
Remove-ItemProperty -Path $nicPath -Name "TcpDelAckTicks" -ErrorAction SilentlyContinue