Disable Drag (not drop) in the Windows Explorer Navigation Pane
I don't think that is possible to disable drag functionality for this pane. However, to avoid accidental drag and drop, you can adjust the drag sensitivity so that it takes a greater effort to trigger a drag and drop operation. By default, the mouse needs to travel four pixels with the button held down for a drag operation to be initiated. To make it harder to initiate an accidental drag operation, just crank this number higher.
How to change drag sensitivity:
Warning: Always back up the resistry before making any changes. To do this, in the registry editor, select File/Export. In the Export Range options, select All. Save the file to the Desktop. If something goes wrong, you can right click that file to restore the registry.
Option 1
-
Press the Windows Logo Key+R to bring up the Run dialog.
-
Type regedit.exe in the Open box and click OK.
-
Navigate to the following key:
HKEY_CURRENT_USER\Control Panel\Desktop
-
In the right side pane, look for the following:
DragHeight
andDragWidth
. -
Right click each one of these values and select Modify.
-
In the Value Data box, type
100
and click OK. -
Log out and log back in for the changes to take effect.
Option 2
-
Press the Windows Logo Key+R to bring up the Run dialog.
-
Type cmd.exe in the Open box and click OK.
-
Type:
reg add "HKCU\Control Panel\Desktop" /v DragHeight /d 100 /f
-
Type:
reg add "HKCU\Control Panel\Desktop" /v DragWidth /d 100 /f
-
Log out and log back in for the changes to take effect.
Remarks
-
Both options will set the sensitivity to 100 pixels of movement. Adjust as required.
-
The default value for
DragHeight
andDragWidth
is4
.
Sources
- http://blogs.msdn.com/b/oldnewthing/archive/2009/04/10/9541813.aspx
- https://kb.cadzow.com.au:444/cadzow/details.aspx?ID=2391