When drag-and-drop stops working, everything feels sticky: you can’t move files in File Explorer, rearrange items on the desktop, or drop attachments into email and chat apps. The good news? In almost every case, this is fixable with a handful of targeted steps.
In this guide, we’ll start with quick, low-risk checks and gradually move toward deeper system repairs. I’ll explain not just what to do, but why it helps—so you feel confident at every step.

1) How Drag & Drop Breaks (Typical Symptoms)
Before we get our hands dirty, let’s make sure we’re talking about the same problem. You might see one or more of these:
- You try to drag a file in File Explorer and it snaps back.
- You can select, but the cursor never shows the “drag” feedback.
- Dragging text between apps doesn’t work; it either does nothing or beeps.
- You can’t drop files into Outlook/Teams/Slack or a browser to upload.
- Dragging between a normal window and an administrator window fails.
If that sounds familiar—perfect. Let’s fix it.
2) Why It Happens (Common Causes)
Knowing the “why” helps you choose the right “how.” The most common culprits:
- Explorer/UI glitch (temporary) or “stuck” drag state.
- Windows file corruption (system files or component store).
- Third-party utilities (clipboard managers, mouse/gesture tools, security software) interfering.
- Elevation mismatch: dragging from a non-admin app/window into an admin-elevated app is blocked by design.
- Mouse/Touchpad settings (ClickLock, gestures) or outdated drivers.
- Registry misconfiguration (DragHeight/DragWidth set too large).
- User profile corruption.
We’ll address each—with the least intrusive fixes first.
3) Quick Fixes You Should Try First
Let’s warm up with fast, risk-free steps. Sometimes “simple” is all it takes.
3.1 Restart File Explorer
Sometimes the shell just needs a refresh.
- Press Ctrl + Shift + Esc to open Task Manager.
- Find Windows Explorer, right-click → Restart.
- Test drag-and-drop again.
3.2 Tap Esc to “Unstick” a Drag
If Windows thinks your mouse button is still held, pressing Esc once or twice can cancel the ghost drag state. Try this, then attempt to drag again.
3.3 Reboot the PC
Oldie but goldie. If your last session ran apps that hook into the shell (RDP tools, screen recorders, gesture utilities), a reboot clears them.
3.4 Check ClickLock
Settings → Bluetooth & devices → Mouse → make sure ClickLock is off (on Windows 10: Control Panel → Mouse → Buttons tab). ClickLock can confuse drag behavior if you’re not expecting it.
If any of the above fixed it, great! If not, let’s go a layer deeper.
4) Repair Windows Files (SFC & DISM)
You mentioned system corruption first—good instinct. We’ll run SFC and DISM in the correct order with the correct syntax.
Tip: Run these in an elevated Command Prompt (Admin).
4.1 System File Checker (SFC)
This verifies and repairs protected system files.
- Press Start, type cmd, right-click Command Prompt → Run as administrator.
- Run:
sfc /scannow
- Wait for Verification 100% complete.
- If it reports repairs, restart and test drag-and-drop.
4.2 Deployment Image Servicing and Management (DISM)
DISM repairs the component store that SFC depends on.
Run these—in this order—in an elevated Command Prompt:
DISM /Online /Cleanup-Image /CheckHealth
DISM /Online /Cleanup-Image /ScanHealth
DISM /Online /Cleanup-Image /RestoreHealth
When finished, reboot, then run sfc /scannow once more for good measure. Test drag-and-drop again.
Why this works: if Explorer or shell components were corrupt, SFC/DISM replace them with healthy copies from the component store or Windows Update.
5) Remove Conflicting Apps (The Smart Way)
Third-party utilities can hook mouse, keyboard, and shell events. Clipboard managers, screen capture tools, exotic file managers, and security suites are common suspects.
Before uninstalling everything (nobody wants that), try this:
- Settings → Apps → Installed apps.
- Sort by Install date and review what changed around the time drag-and-drop broke.
- Temporarily Uninstall or Disable likely culprits (you can reinstall later).
- Restart and test.
If the problem vanishes, you’ve found the conflict. Reinstall alternatives or check the vendor for an updated build.
6) Clean Boot to Isolate Third-Party Conflicts
If uninstalling likely apps didn’t pinpoint it, a Clean Boot helps you test with non-Microsoft services disabled.
- Press Win + R, type
msconfig→ Enter. - On Services tab → tick Hide all Microsoft services → Disable all.
- Open Task Manager → Startup tab → Disable non-essential startup apps.
- Restart and test drag-and-drop.
If it works in a Clean Boot, re-enable items in small batches (5–10 at a time), rebooting after each batch, until the issue returns. The last batch holds the culprit.
7) Create a Fresh User Profile (Fix Profile Corruption)
Sometimes the issue is profile-specific—settings, caches, or registry entries in your account got messy. Creating a new admin user is a clean test.
We’ll mirror your approach, but here’s the most straightforward method from Settings:
- Settings → Accounts → Family & other users.
- Add account → I don’t have this person’s sign-in information → Add a user without a Microsoft account.
- Create a local user (e.g.,
TestAdmin). - After creation, click the new account → Change account type → set to Administrator.
- Sign out and sign in to the new account.
- Test drag-and-drop.
If it works under the new profile, your original user hive likely has conflicting settings. You can migrate your data to the new profile or keep troubleshooting the old one (registry step below).
Prefer Computer Management?
- Computer Management → Local Users and Groups → Users → New User…
- Then Properties → Member Of → Add… → Administrators → OK.
8) Mouse/Touchpad & Gesture Settings to Check
Let’s not miss the basics:
- Update drivers:
- Device Manager → Mice and other pointing devices → your device → Update driver.
- Also check vendor tools (Logi Options+, Razer Synapse, Synaptics/ELAN panels).
- Disable experimental gestures: If you recently enabled custom gestures or tap-and-drag features, toggle them off and test.
- Test another mouse or USB port to rule out hardware.
9) UAC & Elevation Mismatch (Admin vs Non-Admin Windows)
Drag-and-drop won’t work from a non-elevated window into an admin-elevated app (e.g., Notepad run as administrator). This is a security boundary in Windows.
How to work around:
- Run both source and destination at the same elevation (either both normal or both admin).
- Or avoid drag-and-drop for that operation: use Copy/Paste or open the file from inside the elevated app (File → Open).
If drag only fails in these admin scenarios, your system is likely fine.
10) Registry Fix: DragHeight & DragWidth
If the “drag distance” thresholds are set too high, Windows may think you’re just clicking—not dragging.
⚠️ Registry caution: back up before editing.
Press Win + R →regedit→ Enter.
- Navigate to:
HKEY_CURRENT_USER\Control Panel\Desktop - Find DragHeight and DragWidth.
- Set both values (String) to a small number, e.g., 4.
- Sign out → Sign in (or reboot) for the change to apply.
Now try dragging again. If these values were huge (like 1000), this alone fixes it.
11) Extra Tips: Explorer, Clipboard, and Sticky Input
These are small, but they’ve rescued many stuck systems:
- Clear clipboard history: Press Win + V → Clear all.
- Check sticky modifier keys: Tap Esc, Ctrl, Alt, and Shift a couple of times to reset any stuck state.
- Run CTFMON (text input service) if you suspect input subsystem weirdness:
- Press Win + R, run:
ctfmon.exe
- Press Win + R, run:
- Sign out/in instead of full reboot when you need a fast test. It refreshes user shell state.
12) When to Reset/Reinstall (Last Resort)
If you’ve tried everything—Explorer restart, SFC/DISM, app isolation, clean boot, new profile, registry fixes—and drag-and-drop still won’t cooperate, consider a Reset (keep files) or a repair install (in-place upgrade using official media).
- Reset this PC:
Settings → System → Recovery → Reset this PC → Keep my files → Cloud download. - Repair install (in-place upgrade):
Download the official ISO from Microsoft, run setup.exe from within Windows, and choose to keep apps and files.
Tip: Always back up important data first.
13) FAQs
Q1: Drag & drop works in File Explorer but not into Outlook/Teams. Why?
Some apps run with higher privileges or have sandbox rules. Try running both apps with the same elevation, or use Attach/Add inside the destination app.
Q2: The mouse lets go midway when I drag. Is this software?
Could be hardware. Test a different mouse/USB port, replace batteries (if wireless), and check for 2.4 GHz interference.
Q3: Will SFC/DISM delete my files?
No—these repair system components only. They’re safe to run.
Q4: Clean Boot fixed it. What now?
Re-enable startup items/services in batches until the issue returns. The last batch contains the conflicting app.
Q5: Do I need to change registry values if SFC/DISM worked?
No. Only touch the registry if basic/system fixes didn’t help, or if DragHeight/DragWidth are clearly wrong.
Q6: Why does drag-and-drop fail only when the destination app is “Run as administrator”?
That’s by design—Windows blocks drag from a lower-privilege process to a higher-privilege one for security.
14) Disclaimer
This tutorial is for educational purposes. Registry edits and system repairs are safe if you follow steps carefully, but always back up important data. For managed or office PCs, follow your IT policy.
15) Final Thoughts
So far, we’ve done a thorough job—starting with quick shell resets and the Esc “unstick” trick, then moving through SFC/DISM repairs, app conflict checks, Clean Boot, fresh user profile creation, mouse/touchpad sanity checks, UAC/elevation realities, and finally a registry tune-up. In most cases, drag-and-drop is restored long before you ever need to consider a reset.
Tags
drag and drop not working windows 11, drag and drop not working windows 10, sfc scannow, dism restorehealth, clean boot windows, file explorer restart, uac elevation mismatch, dragheight dragwidth registry, mouse touchpad drag fix, windows troubleshooting
Hashtags
#Windows11 #Windows10 #DragAndDrop #Troubleshooting #SFC #DISM #TechGuide #FileExplorer #PCFix