Windows – How to persist the mouse’s pointer speed

mousewindows

Every time I reboot, I need to to go the Control Panel → Mouse PropertiesPointer Options and crank up the pointer speed. Is there a way to persist this setting?

I've had the same problem with Windows Vista and Windows 7.

Best Answer

You could throw a batch file in your startup folder:

reg add "HKCU\Control Panel\Mouse" /v MouseSensitivity /t REG_SZ /d 20 /f

Just change the sensitivity as desired. 1 (lowest) - 20 (highest). Save as mouse.bat for example, then put it in the startup folder in your start menu.

Related Question