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:
- You press Ctrl+C in an application
- The application receives the Copy command and places data on the clipboard using Windows API calls
- The clipboard service stores the data in a shared memory region
- You press Ctrl+V in another application
- 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:
- Press Ctrl+Shift+Esc → Task Manager
- Click the Details tab
- Look for rdpclip.exe — if it exists, right-click → End task
- Go to the Processes tab
- 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:
- Settings → System → Clipboard
- 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:
- Settings → Accessibility → Keyboard
- Verify that Sticky Keys is Off — Sticky Keys changes how modifier keys (Ctrl, Shift, Alt) behave
- 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.