Copy and paste not working on Windows 11 is one of those problems that seems trivial but breaks your workflow entirely. Whether it’s Ctrl+C doing nothing, content that copies but won’t paste, or copy-paste that stops mid-session, there are reliable fixes for each scenario. For the bigger picture, our Complete Guide to Fixing Windows, Browser, and Software Errors pulls everything together.
The key question before troubleshooting: is this happening everywhere (all apps, all content), or just in specific situations? If copying stopped working completely across the entire system, that points to the clipboard service. If it works in some apps but not others, the issue is more app-specific.
Fix 1: Restart the clipboard service (fastest fix for system-wide failure)
When copy-paste stops working entirely — across all applications simultaneously — the Windows clipboard service has usually crashed. This is the most common cause and takes about 30 seconds to fix.
Open Task Manager (Ctrl+Shift+Esc) → Details tab → find rdpclip.exe → right-click → End Task. Then: Win+R → type rdpclip.exe → Enter. This restarts the Remote Desktop Clipboard service, which Windows uses even on local machines for clipboard operations.
Alternatively, restart the entire Windows Explorer shell, which resets many clipboard-related services: Task Manager → Processes tab → right-click “Windows Explorer” → Restart.
Fix 2: Check for applications holding the clipboard
Some applications “lock” the clipboard, preventing other programs from reading or writing to it. Common culprits include remote desktop clients (RDP), older versions of Excel, some password managers, and certain screen capture tools.
To identify the blocking application: download GetOpenClipboardWindow (a free Sysinternals-adjacent utility) or use Process Explorer → Find → Find Handle or DLL → search for “Clipboard.” The application holding the clipboard lock will appear. Close it, and copy-paste usually resumes immediately.
If remote desktop is involved: when connected to an RDP session, clipboard operations go through the RDP protocol. Disconnecting and reconnecting the session often restores clipboard sharing.
Fix 3: Clear the clipboard history
A corrupted entry in clipboard history can prevent new content from being stored. Win+V → click the three dots in the top-right → Clear all. After clearing, test copy-paste again. If clipboard history itself is the problem, you can also disable it temporarily: Settings → System → Clipboard → toggle Clipboard history off → test → toggle back on.
Fix 4: Malware scan
Clipboard hijacking malware — which replaces copied cryptocurrency addresses or redirects pasted content — sometimes causes copy-paste to appear “broken” when it’s actually being intercepted. If copied content doesn’t match what you pasted, or if copy-paste fails with no obvious system explanation, run a Malwarebytes scan.
Signs of clipboard malware specifically: pasting always produces different content than what you copied, especially if you’re copying wallet addresses, passwords, or URLs.
Fix 5: SFC and DISM for system file corruption
Windows copy-paste relies on system components that can become corrupted. Run these in an administrator Command Prompt:
sfc /scannowIf SFC reports corruption it couldn’t fix, follow up with:
DISM /Online /Cleanup-Image /RestoreHealthThen run SFC again. Restart when done.
Fix 6: App-specific copy-paste issues
If copy-paste fails only in one specific application while working fine everywhere else, the issue is within that app. Common examples:
- Microsoft Office (Word, Excel): File → Options → Advanced → check “Use system separators” and look for any clipboard-related options. Also try: File → Options → Add-ins → disable COM add-ins one by one to identify conflicts
- Web browsers: some websites block clipboard access via JavaScript permissions. Look for the clipboard permission in the address bar padlock → Permissions. Alternatively, try Ctrl+Shift+V to paste without formatting, which often bypasses web-based clipboard blocks
- Remote Desktop (RDP): in the RDP connection settings → Local Resources tab → ensure “Clipboard” is checked before connecting
- Virtual machines: clipboard sharing must be enabled in the VM settings (VMware: VM menu → Install VMware Tools; VirtualBox: Devices → Shared Clipboard)
Fix 7: Check Clipboard permissions in privacy settings
Windows 11 introduced clipboard access permissions for applications. Settings → Privacy and security → Clipboard → confirm “Let apps access your clipboard” is On. Some applications need this explicitly allowed to read clipboard contents.
Fix 8: Update or roll back drivers
This sounds unlikely for copy-paste, but graphics drivers and input device drivers occasionally interfere with clipboard operations — particularly on machines using display adapters with clipboard monitoring features. If copy-paste broke immediately after a driver update, Device Manager → roll back the recently updated driver and test.
Our guide on Clipboard History not working covers the Win+V history panel specifically. For copy-paste issues that are browser-specific, our browser troubleshooting guides cover JavaScript clipboard permissions. Microsoft’s clipboard documentation covers the clipboard API and advanced clipboard debugging using the clipboard viewer tools.
When copy-paste works but pasted content is wrong
This is a distinct problem from copy-paste not working at all. If you copy “text A” and paste “text B”, something is intercepting or modifying your clipboard. Check:
- Clipboard history: Win+V → are you accidentally pasting an older item rather than the most recent?
- Text expander software: applications like AutoHotkey, TextExpander, or Espanso can replace pasted text with expansions
- Password manager auto-fill: some password managers auto-fill fields by writing to the clipboard and pasting, which can cause apparent “wrong paste” behaviour
- Malware: clipboard hijackers specifically target crypto wallet addresses and replace them on paste — run a Malwarebytes scan if this is happening with financial content
Copy-paste through Remote Desktop
Copy-paste in RDP sessions deserves its own section because it’s a frequent source of confusion. The clipboard works through a separate RDP channel, and it has specific requirements:
- The RDP connection must have clipboard sharing enabled (Local Resources → Clipboard)
- The rdpclip.exe process must be running on both the local machine and the remote server
- Group Policy on the remote server can disable clipboard redirection for all users — if copy-paste has never worked in RDP in your environment, this is likely IT policy
To restart rdpclip.exe on the remote server while connected: open Task Manager on the remote machine → Details → find rdpclip.exe → End Task → then launch it again from the remote machine’s Run dialog.
Copy-paste in Windows Sandbox or Hyper-V
Windows Sandbox’s clipboard sharing between the host and sandbox is controlled by the sandbox configuration XML. By default, clipboard sharing is enabled, but some enterprise configurations disable it. If copy-paste doesn’t work between your normal Windows environment and a Sandbox, check the Sandbox XML file for <ClipboardRedirection>Disable</ClipboardRedirection> — change “Disable” to “Enable” to restore it.
Hyper-V virtual machines require VMware-equivalent integration services (Enhanced Session Mode in Hyper-V) to support clipboard sharing with the host.
Maximum clipboard content size
Copying very large files, huge blocks of text, or many images simultaneously can cause copy-paste to fail silently — the clipboard simply can’t hold the content and ignores the copy without an error. Windows has no hard clipboard size limit, but available RAM effectively acts as one. If you’re copying extremely large amounts of data (more than a few hundred MB), consider alternative approaches like using “Send to” or drag-and-drop instead.
Fixing copy-paste after a Windows 11 update
If copy-paste broke immediately after a Windows Update, it’s most likely that the update reset some service dependencies or introduced a temporary bug. The fastest resolution in most cases is simply restarting the machine — not just shutting down and starting (which uses Fast Startup), but actually selecting Restart from the power menu. A full restart flushes the Fast Startup state that can preserve broken service states across “shutdowns”.
If restarting doesn’t help after an update: SFC /scannow (Fix 5) is the right next step, as Windows Updates occasionally leave system files in an inconsistent state.
Keyboard shortcut conflicts
Some applications remap Ctrl+C and Ctrl+V for their own purposes. If copy-paste stops working in a specific application but you can still right-click → Copy and right-click → Paste: the keyboard shortcuts are being intercepted by the application. Check the application’s keyboard settings or keybindings, or try alternative shortcuts like Ctrl+Insert (copy) and Shift+Insert (paste) which some applications don’t intercept.
Diagnosing with a fresh user account
If copy-paste fails system-wide and none of the above has resolved it: create a new Windows user account (Settings → Accounts → Other users → Add account) and sign in. Test copy-paste in the new account.
- Works in the new account: the issue is specific to your original user profile — corrupted user settings, a startup program, or profile data
- Also fails in the new account: it’s system-wide — SFC/DISM, hardware, or a system-level program is the cause
This test immediately and definitively separates user-profile issues from system-level issues, which dramatically narrows where to focus the fix effort.
The clipboard stack: understanding what Windows does behind the scenes
Copy-paste in Windows involves a chain of components, and understanding which one failed helps direct the fix. When you press Ctrl+C:
- The application writes content to the Windows clipboard (a shared memory area managed by Win32)
- Windows notifies all clipboard listeners that new content is available
- Clipboard history (if enabled) saves a copy of the content
- When you press Ctrl+V, the target application reads from the clipboard
A failure at step 1 means the application isn’t writing (app-specific issue). Failure at step 2 means the clipboard service crashed. Failure at step 3 means clipboard history has a problem. Failure at step 4 means the target application isn’t reading correctly (another app-specific issue or clipboard lock).
Most “copy and paste not working” reports are failures at step 2 (service crash) or clipboard locks between steps 2 and 4. This is why restarting rdpclip.exe or Windows Explorer — both of which handle clipboard service functionality — resolves so many cases.
Quick diagnostic checklist
| Problem | Try first |
| Copy-paste stopped working completely | Restart rdpclip.exe or Windows Explorer |
| Ctrl+C works but Ctrl+V doesn’t (or vice versa) | Check clipboard lock; try right-click alternatives |
| Paste inserts wrong content | Check Win+V history; scan for clipboard malware |
| Only broken in one app | Check app clipboard permissions; disable its add-ins |
| Only broken in RDP | Enable clipboard sharing in RDP settings; restart rdpclip.exe |
| Broke after Windows Update | Full Restart (not shutdown); then SFC /scannow |
The vast majority of copy and paste failures on Windows 11 resolve with the first two fixes — restarting the clipboard service and checking for clipboard locks. SFC, new user account testing, and malware scanning are for cases where the simple restarts haven’t worked.
Clipboard data formats and compatibility
Windows clipboard stores content in multiple formats simultaneously. When you copy an image from Chrome, the clipboard holds it as a PNG, a DIB (Device Independent Bitmap), and sometimes HTML. Applications read whichever format they prefer.
Problems arise when the sending application stores data in a format the receiving application doesn’t understand. This manifests as: copy works, paste works, but the pasted content looks wrong (wrong formatting, missing elements, converted to plain text). To paste with specific format control:
- In most Microsoft Office apps: Home ribbon → Paste dropdown → Paste Special → choose the exact format
- In web browsers: Ctrl+Shift+V pastes as plain text, stripping all formatting
- Between different applications: use Notepad as an intermediary (paste into Notepad first to strip formatting, then copy from Notepad and paste into the destination)
Format compatibility issues are common when copying between Office and Gmail, between browser and spreadsheets, or between different operating systems via remote desktop.
Preventing clipboard failures
A few practices that reduce how often copy-paste breaks:
- Enable Clipboard History (Win+V) and pin important content — this creates a buffer against clipboard clears and means you rarely “lose” copied content
- Be cautious with clipboard manager software that runs in the background — they occasionally conflict with system clipboard operations
- In enterprises, avoid disabling rdpclip.exe via Group Policy unless there’s a specific security reason — it’s needed for normal clipboard operation even without Remote Desktop
- Keep antivirus exclusions for Office installation folders updated — antivirus scanning clipboard operations in real-time is a known cause of intermittent paste failures in Word and Excel
Copy-paste is one of Windows’ oldest features, but it still breaks more often than it should — primarily because it’s a shared resource that many applications, security tools, and services compete to access. Knowing that the clipboard service (rdpclip.exe) is the restart target and that clipboard locks are the main non-crash cause of failure covers probably 80% of real-world copy and paste problems before needing to investigate further. Related: Windows 11 Camera Not Working.
If all else fails and copy-paste remains broken after all these steps, a Windows repair install (running setup.exe from the Windows 11 installer while keeping files and apps) replaces all system files while preserving your data and applications. This is a more thorough fix than SFC/DISM alone and addresses cases where clipboard infrastructure has become fundamentally corrupted at a level individual repair tools can’t fully reach. If this sounds familiar, Windows 11 PIN Not Working is worth a look.







