In Windows, mouse settings are controlled by using the Mouse Properties dialog box. There are different ways to open mouse settings , for example go to Start button- Control Panel, In the search tab type mouse and select the mouse you are using,you can also use Run dialog box to change mouse setting.
Mouse Settings Changer v1.2 (Friday, October 6, 2023)
1.[FIXED] – The mouse speed is not saved
Hold down the Windows Key and Press R on your keyboard. Once you’ve got the Run command box open, type one of the Following codes and press Enter.
main.cpl
control.exe main.cpl,,2
Mouse Properties dialog box will open
In addition , you can use Settings app to change the mouse settings so that you can adjust your mouse according to your comfort and make it work just the way you want it.
1. Launch the Settings app (Win+I keyboard shortcut).
2. Click the “Devices” category.
3. Click the “Mouse” page in the left menu of the Settings category.
You can customise common mouse functions here but there is no way to change mouse settings in batch , vbscript or Command prompt, there are many Advantages of using scripting language for example , Allows complex tasks to be performed in relatively few steps. Mouse settings changer is a Portable freeware Application to help you change mouse settings without open Mouse Properties dialog box , it has no GUI.
How to use Mouse settings changer
Download and run the MouseSC_Info.bat file to see the whole Cmd parameters support list.
For example , “MouseSC_x64.exe /PrimaryButton:Left” command will change your Primary Mouse button to left or “MouseSC_x64.exe /Speed:10” command will set the Mouse pointer speed
You will find some example batch scripts in the downloaded file , MouseSC_Example.bat and MouseSC_Example2.bat , you can edit them according to your needs.
NOTE: If Mouse Properties window is open, Changing mouse settings may not reflect in the “Mouse properties window” therefore Please close the “Mouse properties” screen before using the program.
Supported Operating Systems: Windows 11 , Windows 10 , Windows 8.1 , Windows 8 , Windows 7, Windows Vista , Windows Xp (32 \ 64-bit)
File: MouseSC_x64.exe │ Virustotal
MD5: 6014fddabdd7b6e2f31c085a25b01c3d
SHA1: 8f5a49aecdfa0227f0ee3012ed24af808b6f0321
File: MouseSC.exe │ Virustotal
MD5: 4e9134b252b9641e8182de97902310a0
SHA1: 5877b14f2be649dd4d305f7f8f541f5ee7338ffc
Fixed , Thank you.
Здравствуйте! после перезагрузки системы не сохраняется скорость мыши. speed.
пришлось дополнительно использовать
REG ADD "HKEY_CURRENT_USER\Control Panel\Mouse" /v MouseSensitivity /t REG_SZ /d 10 /f
REG ADD "HKEY_CURRENT_USER\Control Panel\Mouse" /v MouseSensitivity /t REG_SZ /d 20 /f
Спасибо Вам. крутая программа для применения настроек на лету!
Thanks for the reply. In any case, the cursor feels fine and feels smooth at 1850 dpi and mouse speed: 9 for an FHD monitor. It turns out that the program gives more options for adjusting the sensitivity than the built-in Windows.
Hi, The mouse speed option in the window is between 1-20. The SPI_GETMOUSESPEED parameter in the link below is used to process the mouse speed.
Web Link …
What is the sensitivity multiplier for each of the 20 values in this program?
There are only 11 of them in Windows, and 20 in MouseSC.
In Windows –
1/11 – 0.03125
2/11 – 0.0625
3/11 – 0.25
4/11 – 0.5
5/11 – 0.75
6/11 – 1
7/11 – 1.5
8/11 – 2
9/11 – 2.5
10/11 – 3
11/11 – 3.5
In MouseSC – ?
Thanks.
¿Hay alguna manera de deshabilitar "botón derecho del mouse?" por favor necesito ayuda especificar
Prev post I incorrectly labeled the script as increment.bat when it’s actually the decrement script.
i.e. Use,
set /A VAR=%VAR%-1
for decrement.
And,
set /A VAR=%VAR%+1
for increment.
Great tool.
I hacked out some custom scroll speed increment and decrement windows batch files for my needs. 🙂
*** Increment.bat ***
——————————-
@Echo Off
Set tApp=MouseSC.exe
IF Not %PROCESSOR_ARCHITECTURE% == x86 Set tApp=MouseSC_x64.exe
If Not Exist "%~dp0\%tApp%" (
Echo The file %tApp% was not found
pause & exit
)
"%~dp0\%tApp%" "/Query /VerticalScroll" > temp.txt
set /p VAR= temp.txt
set /p VAR=<temp.txt
set /A VAR=%VAR%-1
Set tCmd=/VerticalScroll:%VAR%
Echo %tCmd%
"%~dp0\%tApp%" %tCmd%
Echo %VAR%
Pause
Please make a new similar tool , may it could be called "Keyboard Settings Changer", which have functions to setting / showing keyboard Properties -> Charcter repeat ->Repeat delay / Repeat rate .thank you!
Is there a way to enable the "Show location of pointer when I press the CTRL key?" This the feature I’m looking for.
change my mouse to golden cool mouse
@Bob miller
MouseSC.exe works by parameter. In normal operation it only gives information. You changed the properties of the mouse keys with the sample bat file.
Please test the same on a different computer.
I wouldn’t advise using this on windows 10. I tried one of the examples and my has gone crazy. So dummy me, I downloaded the main program to see if I could get my mouse working properly and unzipped the file and ran the 64.exe with administrator privilages and all the happened was a flash on the screen and my mouse is completely uncontrollable. Thanks a lot….
My main reason for this was the see if I could get double click back on the right button. Double click was removed some time ago and Logitech has not reinstated it.
I forgot to mention that I had my password program open on another screen and when I tried to open mouse change some of the information was moved/rearranged and was unable to close the program except through Task Manager.
Did you thought about making it open source?
I would like to look on your code.
Thanks.