DashRDP
RDP

Remote Desktop Copy Paste Not Working? Here’s How to Fix It Fast

We’ve all been there. You highlight a crucial snippet of code or a paragraph of text on your local machine, hit Ctrl+C with confidence, switch over to your...

5 min read

Last updated on January 22, 2026

Share this article

We’ve all been there. You highlight a crucial snippet of code or a paragraph of text on your local machine, hit Ctrl+C with confidence, switch over to your Remote Desktop window, hit Ctrl+V, and…

Nothing.

Or worse, it pastes that random YouTube link you copied three hours ago. It is incredibly frustrating, especially when you’re in the flow. As someone who manages servers remotely every single day, I know this glitch can single-handedly ruin your productivity.

But don’t worry, it’s usually a simple glitch in the matrix (specifically, the Windows clipboard process).

Here is the “Too Long; Didn’t Read” fix: To fix copy-paste issues in Remote Desktop (RDP), you usually need to restart the clipboard monitor. Open Task Manager on the remote machine, end the rdpclip.exe process, and restart it by running a new task named rdpclip.exe.

I’m going to walk you through exactly how to do that, plus a few other tricks if the main fix doesn’t work.

🛠️ Key Takeaways

  • The Culprit: It’s almost always rdpclip.exe getting stuck.
  • The Fix: Restarting the process takes less than 30 seconds.
  • The Backup: Sometimes, it’s a checkbox in your “Local Resources” settings.
  • The Pro Move: Group Policy settings can override everything else.

Method 1: The “Old Faithful” (Restarting rdpclip.exe)

In my experience, this solves the problem about 90% of the time. The rdpclip.exe process is responsible for managing the shared clipboard between your local PC and the remote desktop. Sometimes, it just gets tired and needs a nap.

Here is how we wake it up:

  1. Open Task Manager: On the remote computer (the one you are logged into), right-click the Taskbar and select Task Manager.
  2. Find the Process: Go to the “Details” tab (or “Processes” in older Windows versions) and look for rdpclip.exe.
  3. Kill It: Right-click it and select End Task. Don’t worry, your screen won’t go black.
  4. Revive It: In Task Manager, click File > Run new task.
  5. Type It: Type rdpclip.exe and hit Enter.

Try your copy-paste now. Did it work? If yes, you’re welcome! If not, let’s dig deeper.

Method 2: Check Your Connection Settings

Sometimes we overlook the obvious. If rdpclip.exe isn’t the issue, you might have accidentally told the Remote Desktop client not to share the clipboard.

I used to struggle with this when saving different RDP profiles for different clients. Here is how to double-check:

  • Disconnect from the remote session (yes, you have to log off or disconnect temporarily).
  • Open the Remote Desktop Connection window on your local machine.
  • Click Show Options to expand the menu.
  • Navigate to the Local Resources tab.
  • Look at the “Local devices and resources” section.
  • The Golden Rule: Ensure the Clipboard box is checked.

If that box was empty, check it, hit Connect, and you should be good to go.

Method 3: The Group Policy Fix (For the Admins)

If you are on a corporate network or managing a server, a Group Policy Object (GPO) might be blocking clipboard redirection. I see this a lot in strict security environments.

Note: You need admin rights for this one.

  1. Press Win + R, type gpedit.msc, and hit Enter.
  2. Drill down into this path: Computer Configuration > Administrative Templates > Windows Components > Remote Desktop Services > Remote Desktop Session Host > Device and Resource Redirection .
  3. Look for the setting: Do not allow Clipboard redirection.
  4. Make sure this is set to Not Configured or Disabled. (If it’s “Enabled,” that means clipboard sharing is blocked).

Comparison: Which Method Should You Try?

Not sure where to start? Here is a quick breakdown of the methods.

MethodSuccess RateDifficultyBest For…
Restart rdpclip.exeHigh (90%)EasySudden failures during a session.
RDP Settings CheckMediumEasyNew connections or saved profiles.
Group Policy (GPO)LowAdvancedCorporate servers or persistent issues.

Final Thoughts

Dealing with a broken clipboard in RDP is a rite of passage for any remote worker. It’s annoying, but thankfully, it’s rarely permanent.

The next time your Ctrl+V fails you, just remember kill the process, restart it, and get back to being productive.

Does this keep happening to you? Drop a comment below if you’ve found a different fix—I’d love to hear about it!

Why does copy paste stop working in Remote Desktop?

The most common cause is the rdpclip.exe process (the clipboard monitor) crashing or freezing on the remote machine. Other causes include misconfigured RDP settings where “Clipboard” is unchecked, or network group policies that block clipboard redirection for security reasons.

How do I restart the clipboard in Remote Desktop?

Open Task Manager on the remote computer. Go to the “Details” or “Processes” tab, find rdpclip.exe, and right-click to “End Task.” Then, click “File” > “Run new task,” type rdpclip.exe, and press Enter to restart it.

Can I copy files via Remote Desktop clipboard?

es, if “Drives” are also enabled in your Local Resources settings. However, copying large files via the clipboard (Ctrl+C/Ctrl+V) is often unstable. It is better to use the drive redirection feature to drag and drop files directly through File Explorer.

Does restarting the computer fix RDP copy paste?

Yes, restarting the remote computer will reboot all services, including the clipboard monitor. However, this is time-consuming. Restarting just the rdpclip.exe process is much faster and usually achieves the same result without kicking off other users.

Is there a shortcut to fix RDP clipboard?

There isn’t a native Windows keyboard shortcut, but you can create a batch file on your remote desktop containing the commands taskkill /f /im rdpclip.exe and start rdpclip.exe. Double-clicking this file will reset the clipboard instantly.

Share this article