Hello JC,
The symptoms you describe that RDP sessions dropping, RMM remote access failing, and even local console logins freezing, while SMB shares and ICMP pings remain functional point to a problem higher up in the stack than basic network connectivity. Since SMB and ping continue to work, the TCP/IP stack and LAN transport are intact. What’s failing is interactive session handling, which relies on services like TermService (Remote Desktop Services), Winlogon, and in the case of RMM agents, their own service hooks into the interactive desktop.
When you see this combination, the most common root causes are resource exhaustion or driver conflicts at the kernel level. For example, GPU or display driver issues can freeze the interactive session while leaving background services like SMB unaffected. Similarly, endpoint security agents or RMM software hooks can deadlock the Winlogon process, which prevents both RDP and local logon, but does not interfere with file sharing. Another possibility is that the lsass.exe process is hanging under load, which would block authentication and session creation but not disrupt existing SMB connections.
To narrow it down, check the Event Viewer under Applications and Services Logs > Microsoft > Windows > TerminalServices-LocalSessionManager and System. Look for Event IDs 56, 50, or 7011 timeouts. Also review whether the RMM agent service is crashing or hanging at the same time. If you can reproduce the issue, run tasklist /svc remotely while SMB is still working to see if TermService or Winlogon is unresponsive.
In environments where this happens randomly, I’ve seen it tied to outdated display drivers or GPU acceleration being enabled for RDP. Disabling hardware graphics acceleration for RDP sessions (HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp\EnableHardwareMode) can stabilize sessions. Another angle is to confirm that the RMM agent is updated, since older builds can conflict with Windows 11/Server 2022 cumulative updates.
I hope you've found something useful here. If it helps you get more insight into the issue, it's appreciated to accept the answer. Should you have more questions, feel free to leave a message. Have a nice day!
Domic Vo.