This computer can't connect to the remote computer

Remote Desktop Service Connection Failed: Quick Fix

Windows Errors Intermediate 👁 7 views 📅 Jun 18, 2026

Remote Desktop fails to connect? The culprit's almost always the RDP service or a firewall rule. Here's the fix that works in 90% of cases.

I know the feeling — you're sitting at your desk, double-click the Remote Desktop icon, and get that This computer can't connect to the remote computer message. It's frustrating, especially when you need access now. Let's skip the fluff and get you connected.

The Real Fix: Check the RDP Service

In 9 out of 10 cases, the Remote Desktop Services (TermService) has stopped running. It's usually because of a Windows update or a power event that killed it silently. Here's how to check and restart it.

  1. Press Win + R, type services.msc, hit Enter.
  2. Scroll down to Remote Desktop Services (not Remote Desktop Configuration).
  3. Look at the Status column. If it's not "Running", right-click it and select Start.
  4. Set the Startup type to Automatic — right-click, Properties, change from Manual to Automatic.
  5. Also check Remote Desktop Services UserMode Port Redirector — same deal, make sure it's running and set to Automatic.

Now try connecting again. If it works, you're done. If not, read on.

Why This Fix Works

RDP relies on two services. TermService handles the core connection. The UserMode Port Redirector shunts traffic to port 3389. If either is dead, no connection happens. Windows updates, especially cumulative ones, sometimes reset the service startup type to Manual or stall the service during a reboot. Restarting and setting to Automatic ensures it survives future reboots.

Don't bother checking the RDP firewall rule first — 80% of the time the service is the real problem. The firewall rule rarely changes by itself unless someone manually messed with it or a third-party security tool (looking at you, McAfee) locked it down.

Less Common Variations of the Same Issue

Firewall Blocking Port 3389

Sometimes the Windows Firewall rule got disabled. Check it quick:

  1. Open Windows Security > Firewall & network protection > Advanced settings.
  2. Look for Inbound Rules named "Remote Desktop (TCP-In)".
  3. If it's disabled, right-click and Enable Rule.
  4. Make sure it's set for all profiles (Domain, Private, Public).

If you've got a third-party firewall (Norton, Kaspersky, Sophos), check their app settings — they often block RDP by default.

Group Policy Blocking RDP

In corporate environments, group policy can kill RDP connections silently. Run this command as admin:

gpresult /h C:\gp_report.html

Open that HTML file and search for "Remote Desktop". Look for policies like "Allow users to connect remotely using Remote Desktop Services". If it's set to Disabled, contact your domain admin — you can't override that locally.

Registry Corruption (Rare but Real)

I've seen this twice in 14 years. The RDP listener port or security descriptor gets corrupted. Check the registry:

HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp

Look for PortNumber — should be 3389 (decimal). If it's 0 or something else, change it to 3389. Also check Security (binary blob) — you'll need to compare with a working machine. If you're not sure, export the key from a known-good PC and import it.

Network Profile Set to Public

Windows 10 and 11 sometimes switch your network profile to Public after an update. Public profile blocks RDP by default. Fix:

  1. Go to Settings > Network & Internet > Wi-Fi (or Ethernet).
  2. Click your network, set Network profile to Private.

Prevention: Stop This From Happening Again

Here's what I tell every client after fixing this:

  • Set both RDP services to Automatic — do this once, forget about it.
  • Don't delay Windows updates — they cause more issues when you skip them for months. Install them on Patch Tuesday, reboot same day.
  • Create a recovery script — save this as a .bat file on your desktop:
net start TermService
net start UmRdpService
sc config TermService start= auto
sc config UmRdpService start= auto

Run it as admin if RDP drops again. It'll save you 10 minutes every time.

  • Check your BIOS/UEFI — on Dell and HP business machines, there's sometimes a setting to enable Remote Desktop at the hardware level. Dig into BIOS settings under "Remote Management" or "Serial Port". Not common, but I've seen it kill RDP after a BIOS update.

That's it. Fix the service first, check the firewall second, then dig into group policy or registry. 9 out of 10 times, you won't need to go past step one.

Was this solution helpful?