How to Fix Copy Paste Not Working on Windows 11 — The Clipboard Service That Crashes Silently

By Adhen Prasetiyo

Tuesday, May 5, 2026 • 7 min read

Windows 11 showing Ctrl plus V paste attempt producing no output with an empty clipboard notification

How to Fix Copy Paste Not Working on Windows 11 — The Clipboard Service That Crashes Silently

Copy and paste is the most fundamental computer operation. Select text, press Ctrl+C, click somewhere else, press Ctrl+V, and the text appears. You do it dozens or hundreds of times every day without thinking about it.

So when it stops working, the disruption is immediate and total. You select text, press Ctrl+C, move to where you want to paste, press Ctrl+V, and nothing happens. Or worse, it pastes something you copied two hours ago instead of what you just copied.

You try again. Select, Ctrl+C, move, Ctrl+V. Nothing. You right-click and select Copy from the context menu. Right-click and Paste. Still nothing. Copy and paste is broken at a fundamental level and you cannot do any meaningful work on your computer.

This is one of those problems that sounds trivial until it happens to you. Every email, every document, every code edit, every form fill, every message — they all depend on the clipboard working. When it breaks, your productivity drops to near zero.

How the Windows Clipboard Works (And Where It Breaks)

The Windows clipboard is not a simple buffer that holds text. It is a system service that manages a shared memory space accessible by all applications. The clipboard pipeline works like this:

  1. You press Ctrl+C in an application
  2. The application receives the Copy command and places data on the clipboard using Windows API calls
  3. The clipboard service stores the data in a shared memory region
  4. You press Ctrl+V in another application
  5. The receiving application reads the data from the clipboard

The clipboard can hold data in multiple formats simultaneously — the same copy operation might store plain text, rich text (formatted), HTML, and even an image representation. The receiving application chooses which format to use.

Points of failure:

The clipboard service itself. The Clipboard User Service (ClipboardUserService) can crash, hang, or stop running. When it does, no application can write to or read from the clipboard.

Clipboard locking. Only one application can write to the clipboard at a time. The writing application “opens” the clipboard, writes data, and “closes” it. If an application opens the clipboard but crashes before closing it, the clipboard stays locked — no other application can access it.

rdpclip.exe (Remote Desktop Clipboard). If you use or have used Remote Desktop, the rdpclip.exe process manages clipboard synchronization between the local and remote machines. When rdpclip.exe crashes, clipboard functionality can break for all applications, not just Remote Desktop.

Corrupted clipboard data. If the data in the clipboard is corrupted — a malformed image, an extremely large copy, or garbage data from a crashed application — subsequent paste operations either fail silently or produce garbage output.

Step 1: Restart the Clipboard Pipeline

The fastest fix:

  1. Press Ctrl+Shift+Esc → Task Manager
  2. Click the Details tab
  3. Look for rdpclip.exe — if it exists, right-click → End task
  4. Go to the Processes tab
  5. Find Windows Explorer → right-click → Restart

Explorer manages the clipboard UI integration (the Ctrl+C/Ctrl+V keyboard shortcuts are processed through the shell). Restarting Explorer reinitializes the clipboard pipeline.

If rdpclip.exe was the problem (common if you use Remote Desktop), you can restart it by opening Command Prompt and typing:

rdpclip.exe

This launches a fresh instance of the Remote Desktop clipboard process.

Test immediately: open Notepad, type a word, select it, Ctrl+C, click elsewhere, Ctrl+V. If the word appears, clipboard is working again.

Step 2: Clear Corrupted Clipboard Data

If the clipboard contains corrupted data, every paste attempt fails because the receiving application cannot process the corrupted content:

  1. Settings → System → Clipboard
  2. Click Clear next to “Clear clipboard data”

This removes everything from the clipboard — all current and pinned items. After clearing, try a fresh copy and paste operation.

Alternative: open Command Prompt and run:

echo off | clip

This pipes empty data to the clipboard, effectively clearing it from the command line. Useful when Settings is not accessible.

Step 3: Find the Application Locking the Clipboard

If copy paste breaks repeatedly after a short time, an application is periodically locking the clipboard and not releasing it:

Common clipboard-locking applications:

  • Clipboard managers (Ditto, ClipClip, CopyQ, 1Clipboard) — these monitor every clipboard operation and can occasionally lock the clipboard during their own processing
  • Remote Desktop clients — rdpclip.exe, Citrix Receiver, VMware Horizon
  • Virtual machine software — VMware Workstation, VirtualBox (clipboard sharing between host and guest)
  • Password managers — some auto-clear the clipboard after a timeout, and the clear operation can conflict with your own copy operation
  • Screen capture tools — Greenshot, ShareX, Snipping Tool (when copying a screenshot to clipboard)
  • Automation tools — AutoHotkey scripts that modify clipboard contents

Diagnostic approach:

Close suspected applications one at a time. After closing each one, test copy paste. When clipboard starts working after closing a specific application, that is the one that was locking it.

If you need the application but it keeps locking the clipboard, check its settings for clipboard-related options. Many clipboard managers have a “delay” or “monitoring interval” setting that can be increased to reduce clipboard conflicts.

Step 4: System File Repair

If the clipboard pipeline components are corrupted, no amount of restarting will fix it — the corrupted files need to be replaced:

Open Command Prompt as Administrator and run:

sfc /scannow

SFC checks all protected system files, including clipboard-related DLLs, and replaces any that are corrupted or modified.

If SFC reports files it cannot fix:

DISM /Online /Cleanup-Image /RestoreHealth

Then run sfc /scannow again.

After repairs, restart the computer and test clipboard functionality.

Step 5: Keyboard Shortcut Conflicts

If Ctrl+C and Ctrl+V specifically do not work but right-click Copy and Paste do work, the keyboard shortcuts are being intercepted by another application:

Check for keyboard remapping software:

  • AutoHotkey — scripts can remap Ctrl+C to other functions
  • PowerToys Keyboard Manager — check for remapped shortcuts
  • Gaming keyboard software (Razer Synapse, Corsair iCUE, Logitech G Hub) — macro assignments on Ctrl keys
  • Accessibility tools — screen readers or input assistance tools that intercept keyboard shortcuts

Disable each keyboard tool temporarily and test Ctrl+C/Ctrl+V.

Check Windows accessibility settings:

  1. Settings → Accessibility → Keyboard
  2. Verify that Sticky Keys is Off — Sticky Keys changes how modifier keys (Ctrl, Shift, Alt) behave
  3. Verify that Filter Keys is Off — Filter Keys can ignore rapid key presses, which might drop one of the two keys in the Ctrl+C combination

The Clipboard in Remote Desktop Sessions

Remote Desktop clipboard issues deserve special mention because they are extremely common and extremely frustrating:

When you connect to a remote computer via Remote Desktop, clipboard operations cross the network — you copy on your local machine and paste on the remote machine (or vice versa). The rdpclip.exe process handles this synchronization.

Common Remote Desktop clipboard failures:

  • rdpclip.exe crash: kills clipboard in both directions. Fix: end and restart rdpclip.exe on the remote machine.
  • Large clipboard data: copying a large image or a huge block of text overloads the RDP clipboard channel, causing it to hang. Fix: clear the clipboard, then copy smaller amounts.
  • Clipboard redirection disabled: the Remote Desktop connection settings may have clipboard sharing disabled. Fix: in the Remote Desktop client, go to Local Resources tab and make sure Clipboard is checked.

If Remote Desktop clipboard is persistently problematic, consider using a dedicated file transfer tool (like the RDP drive redirection feature) instead of relying on clipboard for transferring data between machines.

Copy paste is one of those things that should just work. It is a 40-year-old computing concept that has been standard since the original Macintosh. When it breaks on a modern operating system, it feels absurd. But the clipboard is more complex than it appears — it is a shared resource that every application touches, and any application can break it by locking it, corrupting it, or crashing the service that manages it. Restarting Explorer and clearing the clipboard fixes the problem in most cases within 30 seconds.

Step-by-Step Guide

1

Restart the Clipboard service and Windows Explorer

Press Ctrl plus Shift plus Esc to open Task Manager. Click the Details tab and look for a process called rdpclip.exe. If it exists right-click it and select End task. Then find Windows Explorer in the Processes tab right-click it and select Restart. This restarts both the Remote Desktop Clipboard process and the Windows shell which together manage the clipboard pipeline. If rdpclip.exe is not listed your system is not using Remote Desktop clipboard and the Explorer restart alone should fix the issue. Test by copying and pasting a word in Notepad.

2

Clear the clipboard data

Go to Settings then System then Clipboard. Click the Clear button next to Clear clipboard data. This removes all data currently stored in the clipboard. If the clipboard contained corrupted data such as a broken image, a large file reference, or malformed HTML it can prevent new copy operations from succeeding. After clearing the clipboard test copy and paste again. Corrupted clipboard data is a common cause of paste producing nothing or pasting old content instead of what you just copied.

3

Check for applications that lock the clipboard

Some applications take exclusive control of the clipboard and do not release it preventing other apps from copying or pasting. Common offenders include clipboard managers such as Ditto or ClipClip, remote desktop clients, virtual machine software like VMware or VirtualBox, some password managers, and screen capture tools. Close these applications one at a time and test copy paste after each close. The application that was locking the clipboard will be identified when copy paste starts working after closing it.

4

Run System File Checker to repair clipboard components

Open Command Prompt as Administrator and run sfc /scannow. Wait for the scan to complete. If it finds and repairs corrupted files restart the computer and test copy paste. The clipboard functionality depends on several system DLL files. If any of these are corrupted the clipboard pipeline breaks. System File Checker replaces corrupted files with clean copies from the Windows component store. If SFC reports files it cannot fix run DISM /Online /Cleanup-Image /RestoreHealth first then run SFC again.

5

Check keyboard shortcuts and accessibility settings

If copy paste does not work via keyboard but works via right-click menu the keyboard shortcuts may be remapped. Check if any keyboard customization software like AutoHotkey, PowerToys Keyboard Manager, or a gaming keyboard driver has remapped Ctrl plus C or Ctrl plus V. Also check Settings then Accessibility then Keyboard and make sure Sticky Keys and Filter Keys are not interfering with modifier key combinations. Disable any keyboard remapping tools temporarily and test. If Ctrl plus C works after disabling the tool reconfigure the remapping to not conflict with clipboard shortcuts.

Frequently Asked Questions

Copy paste works in some apps but not others. Why?
Some applications implement their own clipboard handling that can conflict with the Windows clipboard. Certain web browsers, PDF readers, and specialized software intercept Ctrl plus C within their own interface and handle it differently from the system clipboard. If pasting in Notepad works but pasting in another application does not the problem is in the receiving application not the clipboard itself. Check the application settings for clipboard or paste options. Some applications also restrict pasting for security reasons especially in fields marked as secure like password fields.
I copy text but pasting gives me an image or formatted content instead. What is happening?
The Windows clipboard can hold multiple formats simultaneously. When you copy from a web browser the clipboard receives the text as plain text, rich text HTML, and sometimes as an image all at once. When you paste the receiving application chooses which format to use. Some applications prefer the image or HTML format over plain text. Use Ctrl plus Shift plus V to paste as plain text in most applications. In Word use Paste Special then Unformatted Text. This forces the application to use the plain text version from the clipboard.
Copy paste broke after connecting to Remote Desktop. How do I fix it?
Remote Desktop uses a process called rdpclip.exe to synchronize the clipboard between the local machine and the remote session. When rdpclip.exe crashes or hangs the clipboard stops working in both directions. Open Task Manager on the remote machine and end the rdpclip.exe process. Then open a command prompt and type rdpclip.exe to restart it. This restores clipboard synchronization between the local and remote sessions. If rdpclip.exe crashes frequently check for clipboard-intensive operations or large data transfers that might overwhelm the RDP clipboard channel.
Can a virus or malware break copy paste?
Yes. Some malware specifically targets the clipboard to intercept cryptocurrency wallet addresses, passwords, or other sensitive data. When the malware is poorly written or crashes it can break the clipboard entirely. Run a full scan with Windows Security or your preferred antivirus. Also check for suspicious processes in Task Manager that might be intercepting clipboard operations. If malware is found and removed but copy paste still does not work run System File Checker as described in Step 4 to repair any system files the malware may have corrupted.
Adhen Prasetiyo

Research Bug bounty at javahack team

Research Bug bounty Profesional

Web Development Research Bug Hunter
View all articles →