Problem
How to change the value of "Roll the wheel one notch to scroll" on windows start to lower value.
Analisis and solution description
We are going to use autoit tools[1] that provide automation features for Windows and allow us to modify the registry after system boot. This is the parameter that controls mouse wheel[2]:
HKEY_CURRENT_USER\Control Panel\Desktop\WheelScrollLines
A script that sets the registry variable to a new value can be found here: https://github.com/rtomaszewski/tools/blob/master/wheel-scroling.au3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; This program adjust scroling of the mouse wheel on windows. | |
GLOBAL CONST $SPI_SETWHEELSCROLLLINES = 105 | |
$SPIF_UPDATEINIFILE = 0x1 | |
$SPIF_SENDWININICHANGE = 0x2 | |
$SPIF_SENDCHANGE = $SPIF_SENDWININICHANGE | |
$WHEEL_PAGESCROLL = 4294967295 ; Use this, if you want scroll one Screen at a time | |
$linesToScroll = 3 ; Here come the lines | |
$err = DllCall("user32.dll", "int", "SystemParametersInfo", _ | |
"int", $SPI_SETWHEELSCROLLLINES, _ | |
"int", $linesToScroll, _ | |
"int", 0, _ | |
"int", BitOR($SPIF_UPDATEINIFILE, $SPIF_SENDWININICHANGE)) | |
If @error <> 0 Then | |
MsgBox( 4096, "Dll Error!!!", "There was an error making the Dll call." & @CR & "Error Code: " & @error ) | |
EndIf |
To run it from command line please execute this command and check on Control Panel if the right value has changed:
"C:\Program Files (x86)\AutoIt3\AutoIt3.exe" wheel-scroling.au3
The last thing is to create a *.bat script and add it to logon/startup list to be run after user login[3]:
- Run the gpedit.msc
- Navigate to the User Configuration > Windows Settings > Scripts(Log on/Log off) option.
- Add your *.bat script
- http://www.autoitscript.com/site/
- http://www.autoitscript.com/forum/topic/69061-need-help-with-script/
- http://www.addictivetips.com/windows-tips/how-to-run-programs-automatically-on-windows-7-system-startup/
Thank you ! You solved a big problem for me :)
ReplyDelete