Skip to content

Ultimate tweaks for Windows 11

Ultimate Low-Latency Windows Tweaks: A Simple Guide

If you're trying to squeeze the lowest possible latency out of a Windows PC—especially for competitive gaming—there are a handful of registry, adapter, and Windows settings worth understanding.

The goal isn't to blindly change dozens of values. The best approach is to change one setting at a time, test it, and keep only tweaks that actually improve your latency.

1. TcpDisableTimerCoalesce

Windows can coalesce certain timer events to reduce CPU wakeups and power consumption. Disabling timer coalescing for TCP is sometimes suggested as a way to prioritize responsiveness.

To check the setting:

  1. Press Win + R.
  2. Type regedit and press Enter.
  3. Navigate to:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters 
  1. Look for a DWORD named:
TcpDisableTimerCoalesce 
  1. If it doesn't exist, you can create a DWORD (32-bit) Value with that name.
  2. Set its value to:
1 
  1. Restart Windows.

Important: This isn't guaranteed to reduce ping. Its effect can depend heavily on your Windows build and network hardware. Test before and after rather than assuming 1 automatically means better latency.

2. Disable Network Adapter Power Saving

Power-saving features can sometimes introduce additional latency or inconsistent responsiveness.

Open:

Device Manager → Network adapters → Your adapter → Properties → Power Management

If available, consider disabling:

Allow the computer to turn off this device to save power

For a desktop gaming PC, this can be a reasonable setting to test.

3. Check Interrupt Moderation

Open:

Device Manager → Network adapter → Properties → Advanced

Look for:

Interrupt Moderation

For latency-sensitive workloads, Disabled is commonly worth testing.

The trade-off is potentially higher CPU usage. Don't assume disabling every offload feature is automatically better.

4. Test Receive Side Scaling

Look for:

Receive Side Scaling / RSS

Generally, RSS should remain enabled on modern systems because it allows network processing to be distributed across CPU cores.

Disabling it simply because you're optimizing for latency can actually make performance worse.

5. Use a Wired Connection

This is one of the least glamorous but most effective “tweaks.”

If possible:

Ethernet > Wi-Fi

A wired connection generally gives you:

  • Lower jitter
  • Fewer interference problems
  • More consistent latency
  • Fewer retransmissions

No registry tweak can compensate for a poor wireless signal.

6. Stop Background Network Traffic

Before changing obscure registry values, check what's actually using your connection.

Look at:

Settings → Network & Internet → Data usage

Also consider pausing things such as:

  • Cloud synchronization
  • Game downloads
  • Windows updates during gaming
  • Streaming/upload applications
  • Torrents
  • Large browser downloads

Reducing bufferbloat can have a much bigger impact on gaming latency than many registry tweaks.

7. Optimize Your Router for Latency

If your router supports SQM (Smart Queue Management) or a good QoS implementation, this can be one of the most useful latency optimizations.

The idea is simple:

Keep your connection from becoming saturated so packets don't sit in an enormous queue.

This is particularly important when somebody else on the network is uploading or downloading heavily.

8. Don't Blindly Disable TCP Features

You'll find guides recommending that you disable things like:

TCP Auto-Tuning Receive Window Scaling ECN Checksum Offloading Large Send Offload RSS 

There is no universal “gaming = disable everything” configuration.

Modern Windows and modern NICs use these features for legitimate performance reasons. Disable one feature, benchmark it, and revert it if there is no measurable improvement.

My “Low-Latency First” Checklist

If I were optimizing a Windows gaming PC, I'd prioritize things roughly like this:

  1. Ethernet connection
  2. Router SQM/QoS to control bufferbloat
  3. Stable NIC drivers
  4. Disable unnecessary NIC power saving
  5. Test Interrupt Moderation
  6. Keep RSS enabled unless testing shows otherwise
  7. Stop background downloads/uploads
  8. Use a sensible Windows power plan
  9. Test TcpDisableTimerCoalesce rather than assuming it helps
  10. Benchmark every change

The Golden Rule

Lower ping isn't the only goal.

For competitive gaming, you want:

Low latency + low jitter + minimal packet loss + consistent frame timing

A registry tweak that changes your average ping from 25 ms to 24 ms isn't necessarily useful if it increases CPU usage, packet loss, or latency spikes.

The best “ultimate tweak” is therefore a measured configuration, not a giant .reg file containing 50 unexplained changes.

Tip: Before modifying the registry, create a restore point or export the relevant registry key so you can quickly undo your changes.