All Tweaks

🔧 Nagle Algorithm

Enable TCPNoDelay for MSMQ

Apply TCPNoDelay to Message Queuing if you use MSMQ

Benefit

Ensures MSMQ uses low-latency TCP communication

Impact

low

Commands (2)

$msmqPath = "HKLM:\SOFTWARE\Microsoft\MSMQ\Parameters"
New-ItemProperty -Path $msmqPath -Name "TCPNoDelay" -PropertyType DWord -Value 1 -Force