Skip to content
Remote Desktop & RDPIntermediate

RDP Server Lagging for All Users: How to Find the Cause

QUICK ANSWER When several users experience delayed typing, mouse movement, screen updates, or brief freezes at the same time, start by testing the network pa...

BI
Bison Technical Team Enterprise IT specialists
Updated 24 Sep 2026 11 min read 0 total views
Structured technical guidanceSafety notes included where requiredSources listed below

QUICK ANSWER

When several users experience delayed typing, mouse movement, screen updates, or brief freezes at the same time, start by testing the network path they share and checking for server-wide pauses. Normal CPU and RAM percentages do not rule out packet loss, Wi-Fi congestion, disk latency, or a virtual-machine host issue.

Advertisement

Record the exact time of a freeze. Test from an affected user’s computer to the local gateway and the RDP endpoint while monitoring disk latency and user input delay on the server. Compare the results at that same time. This tells you where to investigate next without assuming that either the Internet connection or the server is at fault.

 

What the Symptoms Tell You

“RDP is slow” can describe different problems. Identify what actually pauses before changing server settings.

Symptom First area to investigate
Typing, mouse movement, and screen updates are delayed Client network, shared Internet, VPN or RD Gateway, and RDP transport
The desktop responds normally, but one application takes time to open or save Application, its data location, and storage latency
All users briefly freeze at the same time A shared network component or a server-wide pause
Only one user is affected That user’s device, Wi-Fi, route, session, or application

These are starting points, not diagnoses. For example, a server pause can delay screen updates, and a poor network connection can make a healthy server appear frozen.

In a shared office or co-working space, users may share a Wi-Fi access point, firewall, router, and Internet uplink. A provider reporting that the circuit is operational does not establish that the complete path from each user’s device to the RDP server has stable latency and low packet loss.

Why Normal CPU and RAM Do Not Settle the Question

Task Manager might show 20–50% CPU and 60–65% memory while users still experience lag. Those figures describe utilization at the time of observation. They do not measure network quality or how long a disk request takes to complete.

A short pause may also be missed by occasional visual checks. On a virtual machine, activity on the host or underlying storage can affect the guest even when its Task Manager totals look moderate. Microsoft recommends collecting performance counters over the period when users experience the issue and correlating them with the complaint time. learn.microsoft.com

Review CPU and RAM, but also collect:

  • User Input Delay per Session on the RDP session host, where available.
  • Disk read and write latency, measured in seconds per operation by Performance Monitor.
  • Network latency and packet loss from affected user locations.
  • VM host and storage metrics if the server is virtualized.

Microsoft identifies CPU, memory, disk, and graphics as factors in Remote Desktop Session Host performance. learn.microsoft.com

Before You Begin

Choose one or two affected users and ask them to report the exact time, including the time zone, when a freeze occurs. Note whether other users experienced it simultaneously.

You will need access to an affected user’s Windows PC and the RDP server. Server event-log and performance investigations may require administrator privileges. If users connect through a VPN or RD Gateway, document that route before interpreting a test to the server address.

Use an approved server address or hostname in commands. Do not publish public IP addresses, usernames, workbook names, or event logs containing customer information in a public support post.

Step 1: Compare the User’s Local Network with the RDP Path

On an affected Windows PC, find its default gateway:

Get-NetIPConfiguration | Select-Object InterfaceAlias, IPv4Address, IPv4DefaultGateway

Open two PowerShell windows. In the first, test the gateway address shown above:

ping -t <gateway-address>

In the second, test the actual endpoint that the user connects to, such as the VPN or RD Gateway address, or the RDP server address when it is directly reachable:

ping -t <RDP-endpoint-address>

Replace each value in angle brackets with a real address; do not type the brackets. Let both tests run through an actual freeze, then press Ctrl+C in each window to display its summary. Record the time of the freeze and any timeouts or large changes in response time.

Result during the freeze What it suggests
Gateway responses also become slow or time out Investigate the user’s Wi-Fi, local network, access point, or router
Gateway stays stable, but the RDP endpoint degrades Investigate the route beyond the local network, including the uplink, VPN, firewall, or gateway
Both tests stay stable, but every session freezes Investigate the RDP service, server, VM host, and storage; the ping tests have not proved the network is healthy
Only one user’s test degrades Compare that device and its connection with an unaffected user’s

Limitations: Some devices do not answer ICMP ping or limit their replies. A clean ping result also does not prove that RDP traffic is unaffected. Treat ping as one piece of evidence and compare it with firewall, VPN, gateway, and server metrics.

If practical, repeat the test with one affected user on a wired connection or an independently managed connection. A clear improvement helps narrow the investigation to the user-side shared network, although it does not identify the exact faulty device.

Step 2: Check the Shared Office Network at the Same Time

Ask the network team responsible for the co-working connection to inspect the exact freeze period. Useful evidence includes:

  • Internet uplink utilization, especially sustained upload traffic.
  • Firewall or router utilization, interface errors, and dropped packets.
  • Wi-Fi access-point load and radio conditions for affected users.
  • VPN or RD Gateway health, if either is in the connection path.
  • Whether users on wired and wireless connections freeze together.

Compare an affected user’s route with an administrator’s route from another location. A smooth administrator session shows that the server can serve that particular connection; it does not establish that the customer’s path is healthy.

Step 3: Measure Responsiveness on the Session Host

On the RDP server, open Performance Monitor (perfmon). Add the User Input Delay per Session counters if they are available on that Windows Server version. They help show whether the session host is delaying delivery of input to a session. Microsoft documents these counters specifically for diagnosing application responsiveness on Remote Desktop Session Hosts. learn.microsoft.com

Also collect CPU, available memory, and disk counters over time. For disk, include Avg. Disk sec/Read and Avg. Disk sec/Write for the volumes involved in Windows profiles, applications, and application data. These counters measure response time, which a disk-usage percentage alone cannot show. learn.microsoft.com

Record the results during both a normal period and a reported freeze:

Measurement Question it helps answer
User Input Delay per Session Is the session host slow to process user input?
Disk read/write latency Are storage requests taking longer during the pause?
CPU by logical processor Is a particular processor busy despite a moderate overall average?
Available memory and paging activity Is the server experiencing memory pressure?
Network and VM host metrics Is a shared component pausing or dropping traffic?

Avoid diagnosing a bottleneck from one counter or an arbitrary threshold. Compare the measurements with the exact time users reported the problem.

Step 4: Check Relevant Windows Events

Event logs can reveal faults, but they cannot reconstruct past CPU, RAM, disk latency, or packet loss unless monitoring was already running. From an elevated PowerShell session on the server, review recent System and Application warnings and errors:

$since = (Get-Date).AddHours(-6)

Get-WinEvent -FilterHashtable @{
    LogName   = 'System', 'Application'
    StartTime = $since
    Level     = 1, 2, 3
} |
Select-Object TimeCreated, LogName, ProviderName, Id, LevelDisplayName, Message |
Format-List

Level values 1, 2, and 3 select critical, error, and warning events. Change AddHours(-6) to match the incident period.

Look for storage, network-adapter, service, application, and unexpected-restart events at the freeze time. A logged error elsewhere in the day is not automatically related.

Application crashes need separate interpretation. For example, an EXCEL.EXE crash event shows that Excel failed; it does not prove that Excel caused a simultaneous pause in every RDP session. Standard Application Error events also generally do not identify the workbook that was open. Investigate repeated crashes, but do not use them as the sole explanation for server-wide lag.

Step 5: Check the Virtualization Layer, If Applicable

If the RDP server is a virtual machine, ask the infrastructure team for host and storage metrics covering the same minutes as the freezes. Include datastore or storage response time, host resource contention, network errors, and any backup or snapshot activity.

Task Manager inside the guest provides only part of the picture. A finding at the host should be correlated with guest performance and user reports before changing VM sizing or storage configuration. Microsoft’s session-host sizing guidance emphasizes evaluating the actual concurrent workload across CPU, memory, storage, and network resources. learn.microsoft.com

How to Verify the Cause and the Fix

Use the same comparison before and after a targeted change:

  1. Record the time and duration of a user-reported freeze.
  2. Capture the affected user’s gateway and RDP-path results.
  3. Capture server input delay and disk latency over that interval.
  4. Obtain matching firewall, VPN, Wi-Fi, and VM-host metrics where applicable.
  5. Change one identified component or condition.
  6. Repeat the observation during a comparable number of active sessions.

The cause is much more convincing when a measured fault lines up with the freeze and stops after the relevant change. If the evidence conflicts, keep investigating rather than applying broad RDP or security-policy changes.

Common Mistakes to Avoid

  • Treating low CPU usage as proof that the server is healthy. It does not measure disk response time or network quality.
  • Treating a healthy Internet speed test as proof that RDP is healthy. An interactive session also depends on stable latency and packet delivery.
  • Testing only from an administrator’s different location. Test from the locations where users actually experience the issue.
  • Comparing results taken at different times. Simultaneous measurements are needed for an intermittent freeze.
  • Changing DCOM permissions because Event ID 10016 appears. An event’s presence alone does not establish a connection to RDP lag.
  • Disabling antivirus, firewall rules, or RDP transport features without evidence. Such changes can introduce security or performance problems and obscure the original cause.

FAQ

Can a shared Internet connection cause all RDP users to freeze together?

Yes. If affected users share the same access point, router, firewall, VPN, or uplink, a problem at that component can affect them simultaneously. Confirm it by matching user reports with network measurements.

Does CPU below 50% mean the RDP server is not the problem?

No. It makes sustained total CPU saturation less likely during the measured period. Disk latency, a busy logical processor, an RDP service problem, or a VM-host pause may still need investigation.

Does 60–65% RAM usage cause RDP lag?

That percentage alone does not establish memory pressure. Examine available memory and paging activity during the incident.

Why does my admin session work while customer sessions lag?

Your connection may use a different Internet provider, route, VPN, gateway, or local network. It may also have a different workload. Compare paths and measurements at the same time.

What if the gateway ping is slow?

Start with the affected device and local network. Compare wired and Wi-Fi users, then inspect the access point, switch, and router. A gateway that does not respond reliably to ICMP requires another measurement method.

What if gateway ping is stable but the RDP endpoint ping is slow?

Investigate the path beyond the local gateway: shared uplink, ISP route, firewall, VPN, or RD Gateway. Check which endpoint the user actually reaches.

What if both pings are stable but RDP still freezes?

Continue with session-host input delay, disk latency, RDP gateway health, and VM-host metrics. Ping does not reproduce all characteristics of RDP traffic.

Is high disk usage required for storage to be the cause?

No. Measure disk read and write response time during the freeze. A utilization percentage does not tell you how long an individual request waited.

Can one large Excel workbook freeze every user’s RDP session?

An Excel workload can affect shared server resources, but the workbook’s size or an Excel crash alone does not prove it caused a simultaneous freeze. Correlate its activity with CPU, memory, storage, and the precise incident time.

Can Windows Event Viewer show CPU and RAM usage from earlier today?

Ordinary error and warning events do not provide a complete historical utilization graph. Historical performance analysis requires counters or another monitoring system that was collecting data at the time.

Should I disable UDP to fix intermittent RDP lag?

Do not make it a blanket fix. Transport behavior depends on the deployment and network path. First collect evidence about the affected connection, then test a documented configuration change in a controlled way if the network team identifies a transport-specific problem.

When should the co-working provider investigate?

Involve them when multiple users on their shared network freeze together, particularly if local or outbound latency, packet loss, interface drops, or congestion aligns with the incidents. Give them precise timestamps and measurements.

FINAL RECOMMENDATION / CONCLUSION

For simultaneous typing delays and freezes, begin with a same-time comparison from an affected user’s location: local gateway, actual RDP endpoint, and server responsiveness. In a co-working environment, the shared network is a strong candidate, but the diagnosis should rest on measurements taken during a freeze. If the user-side path remains stable, examine session-host input delay, disk latency, and the virtualization layer before changing server capacity or RDP settings.

Sources: Microsoft Learn: User Input Delay counters; Microsoft Learn: Performance tuning Remote Desktop Session Hosts; Microsoft Learn: Troubleshoot Windows performance problems; Microsoft Learn: Troubleshoot issues using Performance Monitor; Microsoft Learn: Session host VM sizing guidelines.

YOUR FEEDBACK

Was this guide useful?

Your answer helps us keep BISONKB accurate and practical.

THE BISON BRIEF

Practical IT knowledge, once a week.

New troubleshooting guides, scripts and infrastructure notes. No noise.

By subscribing, you agree to our privacy policy. Unsubscribe at any time.