Troubleshooting
66 guides about troubleshooting on Windows — part of the Edge Drop library.
-
Clipboard Tools on Multi-Monitor Windows Setups
Win+V opens on the screen it was last used on, which is rarely the screen you are working on. A shelf pinned to one edge of one display is the multi-monitor fix.
May 21, 2026 | 7 min read | By Mohit Sehrawat -
Ultrawide Screens and Modal Clipboard Popups
A center-modal clipboard popup on a 49-inch ultrawide is a 24-inch mouse hike from either end. An edge-anchored shelf halves the travel and beats the modal every time.
May 23, 2026 | 7 min read | By Mohit Sehrawat -
Laptop Plus Monitor: Which Screen Should Hold History?
A laptop with an external monitor is a two-screen setup where one screen changes. Pin the clipboard shelf to the screen you actually work on, not the laptop's built-in panel.
May 25, 2026 | 7 min read | By Mohit Sehrawat -
Display Disconnects That Reset Window Positions
Unplugging a monitor can scramble every window's position, including the clipboard shelf. The cause is monitor ID reassignment, and the fix is per-monitor persistence.
May 26, 2026 | 7 min read | By Mohit Sehrawat -
DPI Mixing: Blurry Overlays on a Secondary Screen
A 4K monitor at 150% next to a 1080p monitor at 100% makes some Electron overlays render blurrily on the secondary. The cause is per-monitor DPI awareness.
May 27, 2026 | 7 min read | By Mohit Sehrawat -
4K Screenshots Blow Past Clipboard Limits
A 4K screenshot as a bitmap is 30-50 MB raw and 2-5 MB as PNG. The 4 MB clipboard history cap silently drops the largest captures. Use file-first capture instead.
May 28, 2026 | 8 min read | By Mohit Sehrawat -
Gaming Fullscreen and Clipboard Hotkeys
Exclusive fullscreen games eat global hotkeys, including Win+V and Alt+C. Borderless windowed mode is the workaround, or use a clipboard tool that suppresses in fullscreen.
May 29, 2026 | 8 min read | By Mohit Sehrawat -
Should a Clipboard App Hide in Games?
A clipboard overlay over a fullscreen game steals focus, covers the crosshair, and looks like a cheat to anti-cheat. Here is when and how to suppress it.
May 31, 2026 | 9 min read | By Mohit Sehrawat -
Anti-Cheat, Overlays, and Why Less Is Safer
A clipboard overlay is not a cheat, but anti-cheat can think otherwise. Here is what kernel anti-cheats flag, and why a click-through edge shelf differs.
Jun 1, 2026 | 8 min read | By Mohit Sehrawat -
Streaming While Using a Clipboard Shelf
A streamer's clipboard is a leak vector. The 25 items in Windows history include every secret copied recently. Here is how to set up a scene-safe workflow.
Jun 3, 2026 | 8 min read | By Mohit Sehrawat -
Laptop Battery and Always-On Clipboard Polling
A clipboard manager polls every few hundred milliseconds. On a laptop, that polling blocks deep CPU sleep states. Here is what it actually costs in milliamps.
Jun 4, 2026 | 9 min read | By Mohit Sehrawat -
How Much RAM a Clipboard Manager Should Use
A clipboard manager should use only the RAM it needs. The range is 5 MB to 160 MB for tools that are functionally similar. Here is where the megabytes go.
Jun 5, 2026 | 9 min read | By Mohit Sehrawat -
CPU Spikes When You Copy a Huge Image
A 20 MB bitmap copy should not pin a CPU core. The fix is lazy hashing, disk payloads, and off-thread thumbnails — not brute-forcing every format on the clipboard chain.
Jun 7, 2026 | 7 min read | By Mohit Sehrawat -
Startup Cost: Login-Item Clipboard Apps
A clipboard manager that takes 4 seconds to settle at login is costing you every morning. Measure the cost, delay-start it, and skip the tray animation that does no useful work.
Jun 8, 2026 | 7 min read | By Mohit Sehrawat -
Click-Through Edges That Do Not Steal Focus
A clipboard overlay that grabs keyboard focus when it opens breaks paste. The Win32 fix is WS_EX_NOACTIVATE — a window the mouse can hover but the keyboard never lands on.
Jun 9, 2026 | 7 min read | By Mohit Sehrawat -
Taskbar Auto-Hide Versus Edge Hover Zones
A left-or-right taskbar with auto-hide uses the same pixels an edge-hover clipboard shelf needs. The fix is to pick a side that is not contested, or to widen the trigger strip.
Jun 10, 2026 | 8 min read | By Mohit Sehrawat -
Tablet Mode and Accidental Edge Opens
A hover-triggered shelf has no business on a touchscreen edge. On a tablet, edge swipes belong to the OS, and the shelf should disable hover and fall back to a button or hotkey.
Jun 12, 2026 | 7 min read | By Mohit Sehrawat -
Remote Desktop Fullscreen vs a Local Shelf
A local clipboard shelf cannot see copies made inside an RDP fullscreen session. The remote machine has its own clipboard, and Win+V on your keyboard talks to whichever session is active.
Jun 13, 2026 | 7 min read | By Mohit Sehrawat -
Virtual Desktops and Always-On-Top Shelves
A clipboard shelf set to always-on-top appears on every virtual desktop — usually the right behaviour. The question is whether it should follow you across Win+Tab, and how to suppress it during fullscreen.
Jun 15, 2026 | 7 min read | By Mohit Sehrawat -
High Refresh Pointers and Hover Dwell Times
A 40 ms hover dwell feels instant on 60 Hz and laggy on 144 Hz. The fix is to tune dwell in pointer-events, not in raw milliseconds, or to expose the dwell as a setting.
Jun 16, 2026 | 7 min read | By Mohit Sehrawat -
Does Hardware Acceleration Help a Tiny Overlay?
For a small, mostly-static overlay, hardware acceleration is often a net loss. The GPU process costs more idle RAM than it saves in render time, and software compositing is fine for a shelf that rarely repaints.
Jun 17, 2026 | 7 min read | By Mohit Sehrawat -
Measuring Clipboard App Idle Cost Yourself
Vendor RAM claims are easy to doubt. The honest answer is to measure idle RAM and CPU yourself in Task Manager, with a controlled methodology and a 60-second settle window.
Jun 18, 2026 | 7 min read | By Mohit Sehrawat -
Sleep/Wake False Copy Events
A laptop waking from sleep often fires a spurious "clipboard changed" event. A well-behaved watcher re-seeds the clipboard state on resume and ignores the bogus first event.
Jun 19, 2026 | 7 min read | By Mohit Sehrawat -
Docking Stations That Rearrange Displays
A dock that rearranges monitors on every connect breaks any overlay that persists by display ID. The fix is to persist by geometry and monitor name, not by a volatile index.
Jun 21, 2026 | 7 min read | By Mohit Sehrawat -
Left Edge vs Right Edge: Handedness and Taskbars
Pick the edge that matches your mouse hand and does not fight your taskbar. For most right-handed users with a bottom taskbar, the right edge wins; for left-handed users, the left.
Jun 22, 2026 | 7 min read | By Mohit Sehrawat -
Vertical Monitor in Portrait: Hot Zones Change
A portrait monitor changes edge geometry. Height fractions that made sense in landscape fail in portrait, and the trigger strip needs to be confined to the middle of the long edge.
Jun 23, 2026 | 7 min read | By Mohit Sehrawat -
Quiet Hours: Sound Effects on a Clipboard App
A clipboard app that beeps on every copy is a shared-office hazard. Haptics and sounds should be off by default, and the app should respect Windows Focus Assist.
Jun 24, 2026 | 7 min read | By Mohit Sehrawat -
Reduce Motion Settings and Spring UIs
A spring-physics open animation is beautiful on a 60 Hz display and a vestibular hazard on a 144 Hz display. Honor the OS reduce-motion setting and bounce becomes optional, not mandatory.
Jun 25, 2026 | 7 min read | By Mohit Sehrawat -
Always-On-Top Apps That Fight Each Other
Two always-on-top apps on the same screen produce z-order wars. Pick one winner per region, suppress the loser during fullscreen, and never stack PowerToys Always On Top over a clipboard shelf.
Jun 26, 2026 | 7 min read | By Mohit Sehrawat -
Integrated GPUs and Transparent Windows
A frosted, transparent overlay window can hitch on an older integrated GPU where dedicated VRAM is absent. Solid fills and reduced transparency are the honest fix.
Jun 28, 2026 | 7 min read | By Mohit Sehrawat -
Win+V Not Working on Windows 11: 9 Fixes
When Win+V does nothing, the cause is usually a disabled history, a stopped Clipboard User Service, or a Group Policy override. These nine fixes cover the full tree, in order.
Jun 29, 2026 | 7 min read | By Mohit Sehrawat -
Clipboard History Not Saving New Items
When Win+V works but new copies never appear, the cause is usually the 4 MB cap, an excluded app, a stopped sync, or a corrupt history database. Here is the diagnostic tree.
Jun 30, 2026 | 7 min read | By Mohit Sehrawat -
Copy and Paste Completely Dead on Windows 11
When Ctrl+C and Ctrl+V do nothing at all, the cause is usually a stuck rdpclip, a frozen explorer, a locked clipboard, or malware. This tree covers the worst-case outage.
Jul 1, 2026 | 7 min read | By Mohit Sehrawat -
Pinned Clipboard Items Disappeared
Pinned clipboard items are supposed to survive restarts, but they vanish after updates, profile changes, and sync conflicts. Here is why pins are fragile and how to recover them.
Jul 3, 2026 | 7 min read | By Mohit Sehrawat -
Windows Clipboard Not Saving Images
When Win+V saves text but not images, the cause is usually the 4 MB cap, the format whitelist, or a disabled bitmap history. Here is the diagnostic tree for missing screenshots.
Jul 5, 2026 | 7 min read | By Mohit Sehrawat -
Remote Desktop Copy-Paste Not Working
RDP copy-paste breaks because rdpclip is stuck, clipboard redirection is disabled, or a Group Policy blocks the channel. This tree covers the full diagnostic from the simple to the obscure.
Jul 6, 2026 | 7 min read | By Mohit Sehrawat -
RDP Files Paste but Text Does Not (or the Reverse)
RDP has two clipboard channels: text and files. Each has its own checkbox, its own format whitelist, and its own failure modes. When one works and the other does not, the cause is the channel split.
Jul 7, 2026 | 8 min read | By Mohit Sehrawat -
Phone Link Clipboard Not Working in 2026
Phone Link cross-copy fails when permissions drift, accounts mismatch, or a Windows update stalls the bridge. Here is a 2026-tested fix order that does not break Win+V.
Jul 8, 2026 | 8 min read | By Mohit Sehrawat -
Android to Windows Clipboard Sync Failed
Android-to-Windows clipboard sync fails across Phone Link, SwiftKey, and OEM bridges. Here is how to isolate the bridge, fix permissions, and pick a fallback.
Jul 9, 2026 | 8 min read | By Mohit Sehrawat -
Win+Shift+S Does Nothing
When Win+Shift+S produces no overlay, no screenshot, and no notification, the cause is usually Snipping Tool, a hotkey conflict, or clipboard history being off. Here is the fix order.
Jul 10, 2026 | 7 min read | By Mohit Sehrawat -
Clipboard Stuck Until You Paste
When the clipboard refuses new copies until you paste something old, an app has opened the clipboard and never closed it. Here is how to find and kill the culprit on Windows 11.
Jul 12, 2026 | 7 min read | By Mohit Sehrawat -
Two Clipboard Managers Fighting Each Other
Win+V plus Ditto, CopyQ plus ClipboardFusion, or any pair of clipboard monitors will conflict, drop copies, and lock the clipboard. Run one watcher, disable the rest.
Jul 13, 2026 | 7 min read | By Mohit Sehrawat -
Clipboard History Grayed Out by Organization
When the Clipboard history toggle in Settings is greyed out and says "managed by your organization," a group policy or MDM is blocking it. Here is what employees can and cannot do.
Jul 14, 2026 | 7 min read | By Mohit Sehrawat -
How to Restart the Clipboard User Service
The Clipboard User Service (cbdhsvc) hosts Win+V history. When it stalls, restart it via services.msc or PowerShell before rebooting. Here is the safe procedure.
Jul 15, 2026 | 7 min read | By Mohit Sehrawat -
Explorer.exe Restart to Unstick Copy-Paste
Restarting explorer.exe is the classic "turn it off and on again" for stuck copy-paste on Windows. It works for some causes and is cargo cult for others. Here is the difference.
Jul 16, 2026 | 7 min read | By Mohit Sehrawat -
Paste Works in Notepad but Not in Word
When paste works in Notepad but fails in Word, the cause is Word: add-ins, protected view, format restrictions, or a stalled Office clipboard. Here is how to isolate and fix it.
Jul 17, 2026 | 7 min read | By Mohit Sehrawat -
Paste Works in Word but Not in a Browser
When paste works in Word but fails in a browser, the cause is usually HTTPS permission, a custom web editor, an extension, or a UAC mismatch. Here is the diagnostic order.
Jul 18, 2026 | 7 min read | By Mohit Sehrawat -
Cannot Paste Into an Admin Window
Windows blocks clipboard transfer between normal and elevated (admin) processes through UIPI. To paste into an admin window, run both sides elevated or use a file as a bridge.
Jul 20, 2026 | 7 min read | By Mohit Sehrawat -
Ctrl+V Inserts a Letter V
When Ctrl+V inserts a literal "v" instead of pasting, the cause is keyboard layout, sticky keys, a stuck modifier, or an app remap. Here is the diagnostic order.
Jul 20, 2026 | 7 min read | By Mohit Sehrawat -
Mouse Right-Click Paste Missing
When the right-click Paste command disappears from the context menu, the cause is a broken shell extension, an app intercepting the menu, or a tablet mode setting. Here is the fix order.
Jul 21, 2026 | 7 min read | By Mohit Sehrawat -
Clipboard History Search Finds Nothing
When Win+V search returns no results for text you know you copied, the cause is image-only items, encoding quirks, a 25-item eviction, or a service stall. Here is the fix order.
Jul 22, 2026 | 7 min read | By Mohit Sehrawat -
Copied Text Pastes as an Image
When copied text pastes as an image, the source app wrote a bitmap preview first and the target app picked it. The fix is plain-text paste, or changing the source's copy format.
Jul 23, 2026 | 7 min read | By Mohit Sehrawat -
Copied Image Pastes as a File Path
When a copied image pastes as a file path string, the target asked for text and the source provided an HDROP file reference. The fix is to pick a target that accepts image format.
Jul 24, 2026 | 7 min read | By Mohit Sehrawat -
OneDrive / Office Clipboard Taking Over
The Office clipboard is a separate 24-item stack that runs alongside Win+V and can intercept pastes in Word, Outlook, and Excel. Here is how to tell them apart and tame both.
Jul 25, 2026 | 7 min read | By Mohit Sehrawat -
After Sleep, the First Copy Is Ignored
After the PC wakes from sleep, the first copy often does not land in Win+V history. The cause is a stalled clipboard listener that recovers after a second copy or a service restart.
Jul 27, 2026 | 7 min read | By Mohit Sehrawat -
Clipboard Sync Says On but Devices Disagree
When clipboard sync is enabled on both PCs but copies do not arrive, the cause is account mismatch, sync toggle subtlety, region limits, or a delayed first sync. Here is the fix order.
Jul 28, 2026 | 8 min read | By Mohit Sehrawat -
iPhone to Windows Paste: What Works in 2026
iPhone-to-Windows paste in 2026 has no first-party cloud bridge. Phone Link iOS does limited things, iCloud for Windows does not sync the clipboard, and third-party bridges vary.
Jul 29, 2026 | 7 min read | By Mohit Sehrawat -
Citrix and VDI Clipboard Redirection
Citrix clipboard not working usually means policy, ICA bandwidth, or the file-versus-text split, not a Windows clipboard bug. This guide covers the fix order.
Jul 30, 2026 | 7 min read | By Mohit Sehrawat -
VM Guest Clipboard Integration Broken
VMware, VirtualBox, and Hyper-V clipboard breaks share three causes: missing guest tools, a one-way direction setting, or a Linux daemon not running.
Jul 31, 2026 | 7 min read | By Mohit Sehrawat -
Windows Sandbox Has No Lasting History
Windows Sandbox shares the host clipboard in-session, but Win+V history inside the sandbox is destroyed at close. Do not treat a sandbox clip as storage.
Aug 1, 2026 | 7 min read | By Mohit Sehrawat -
Third-Party Antivirus Blocking Clipboard Access
When a clipboard manager launches but captures nothing, the cause is often a security suite hooking the clipboard. This guide covers Defender, CFA, and WIP.
Aug 3, 2026 | 8 min read | By Mohit Sehrawat -
Corrupt Clipboard Cache After Insider Builds
Insider builds can break Win+V with a corrupt cache. This guide covers the reset order: clear, restart the service, re-register, SFC, DISM, then roll back.
Aug 4, 2026 | 7 min read | By Mohit Sehrawat -
Language Packs That Steal Win+V
Win+V stops opening the clipboard history pane after installing a new input language, IME, or keyboard remapper. Here is how to find what grabbed the shortcut and get it back.
Aug 5, 2026 | 8 min read | By Mohit Sehrawat -
How to Test Whether the OS Clipboard Itself Is Healthy
Before blaming Win+V, Ditto, or an edge shelf for paste failures, run a five-minute Notepad round-trip. If plain copy and paste work, the OS clipboard is healthy and the problem is elsewhere.
Aug 5, 2026 | 7 min read | By Mohit Sehrawat -
Safe Mode and a Clean Boot for Clipboard Bugs
When the OS clipboard round-trip test fails and Explorer restarts do not help, the next step is a Safe Mode boot and then a clean boot via msconfig to bisect which driver or service is breaking copy and paste.
Aug 6, 2026 | 7 min read | By Mohit Sehrawat -
When to Reset Windows Because Paste Is Haunted
A Windows reset is almost never the right fix for a clipboard bug. Run these ten checks first, and reserve reset for the two narrow cases where the system image itself is broken.
Aug 7, 2026 | 7 min read | By Mohit Sehrawat