How to keep mouse wheel settings (windows resets them)

4

405 TD Estate

I want to have my mouse scroll 8 lines at a time. I can do this by
going to control panel - mouse - wheel and selecting 8 lines at a time.


However the next time I start my laptop it is back to 1 again. Very
annoying . I can't see any settings for the mouse wheel in regedit so
perhaps it is not stored there?

Ian
 
J

Jon

You may well be aware that "405 TD Estate" <[email protected]> had
previously written in
I want to have my mouse scroll 8 lines at a time. I can do this by
going to control panel - mouse - wheel and selecting 8 lines at a time.


However the next time I start my laptop it is back to 1 again. Very
annoying . I can't see any settings for the mouse wheel in regedit so
perhaps it is not stored there?

Ian

The setting is stored in

"WheelScrollLines"

at

HKEY_CURRENT_USER\Control Panel\Desktop

So you could try forcing it with a startup shortcut

eg pasting these 2 lines (watch out for word wrap - 2 lines only) into
notepad, saving with a .vbs extension, and putting a shortcut to it in your
startup folder

Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.RegWrite "HKEY_CURRENT_USER\Control
Panel\Desktop\WheelScrollLines",8, "REG_SZ"


The registry change may or may not be sufficient though. You'd have to test
it.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top