5

In Windows Vista, I have tried to set the setting 'the following number of lines at a time' to zero. I assumed my scroll wheel would not scroll anymore. But it still works.

I'm trying to disable the wheel because my RSI complaints worsen when using the scroll wheel often.

Does anyone have an idea on how to achieve this?

3 Answers 3

5

Have you checked the related registry setting? In Registry Editor, go to

HKEY_CURRENT_USER > Control Panel > Desktop

and set WheelScrollLines = 0, then reboot your PC and check if it works.

If this doesn't work after reboot, or WheelScrollLines is reset to its previous value, then the problem may be the touchpad driver (I assume you are on a laptop) which may override the wheel settings for all mouse devices. To fix this, you should update the synaptics drivers.

1
  • Nice one, The control panel kept resetting the scroll lines value. After setting the 'WheelScrollLines' value and a reboot my mouse scroll wheel no longer works. Woehoo! Commented Jul 27, 2010 at 6:41
9
+50

You could use AutoHotKey!

WheelDown::
WheelUp::
return

Would tell both scrollings to do nothing at all. You'll have to place the .ahk file containing that into your startup folder, but this has the advantage of being an entirely software solution that can be easily disabled, and works per-user, so it won't inconvenience others if they ever use your PC.

3
  • 1
    I like the ingenuity of this answer!!! Hope I will use it one time when Windows registry will not let me set the WheelScrollLines setting. Commented Jul 27, 2010 at 6:42
  • Awesome - Thank You So Much! This was quick and worked like a charm! Commented May 15, 2012 at 2:35
  • In case anyone is wondering, this script doesn't disable middle click, just the scrolling part is disabled which is exactly what I was looking for. Much better than messing with the Windows Registry.
    – Ghos3t
    Commented Jan 14, 2018 at 5:14
0

Just remove the wheel from the mouse. Should be the easiest way; dissecting a mouse takes five minutes or so.

3
  • 1
    It's not my own mouse, I'd better not do that. Commented Jul 27, 2010 at 6:40
  • 1
    Actually, Phoshi's answer is faster(AutoHotKey) and no need to dispose/store the wheel. It may take some time to "relearn" in the fingers though. Commented May 15, 2012 at 2:38
  • Removing the wheel from an apple magic mouse? That's not possible. And even if: I don't want to loose the scrolling from the host OS. Only VM I access via Remote Deskop has annoying behaviour.
    – Martin
    Commented Dec 18, 2018 at 14:44

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .