How to increase mouse sensitivity beyond limits in Windows Regedit?

15

10

I want to increase mouse sensitivity beyond the limits set in Windows 7 Control Panel. I found various mouse sensitivity settings in regedit under HKEY_CURRENT_USER\Control Panel\Mouse.

Can I increase mouse speed and senstivity there (which is limited in control panel)?

Alfred James

Posted 2012-09-01T19:40:21.807

Reputation: 379

Increase pointer speed in main.cpl control panel or Command: reg add "HKCU\Control Panel\Mouse" /v "MouseSensitivity" /d "20" /f – Biswapriyo – 2017-10-15T20:00:11.080

1The best way to increase mouse sensitivity beyond the limits of your mouse is to buy a better mouse. Depending on your budget and needs, there are magnificent mice to be had. – harrymc – 2019-02-24T17:59:41.807

Answers

8

In regedit, there are three settings in the registry correlated to changes in the speed setting of mouse control panel:

HKEY_CURRENT_USER\Control Panel\Mouse\MouseSpeed
HKEY_CURRENT_USER\Control Panel\Mouse\MouseThreshold1
HKEY_CURRENT_USER\Control Panel\Mouse\MouseThreshold2

The MouseSpeed key maxes at 2 from control panel, and increasing this above 2 will cause the mouse to slow down, since it doesn't accept values above 2.

The mouse speed is a multiplier for MouseThreshold1 and MouseThreshold2, which correlate to acceleration.

To increase mouse sensitivity to maximum:

  1. Set MouseSpeed to 2.
  2. Set MouseThreshold1 to 0.
  3. Set MouseThreshold2 to 0.

You may want to set MouseThreshold1 and MouseThreshold2 a little higher than 0 if your pointer becomes a little too jumpy on the screen, but make sure that MouseThreshold2 is greater or equal to MouseThreshold1, and all three of these are integer values.

amiregelz

Posted 2012-09-01T19:40:21.807

Reputation: 6 965

I'm guessing it's just a restart will do it – markasoftware – 2014-10-21T22:43:56.627

How is MouseSpeed a multiplier when you gain speed by increasing it up to 2, but by setting the other two to 0? – Panzercrisis – 2015-04-07T12:47:53.383

1Given that the settings are under HKEY_CURRENT_USER, it's probably sufficient for reloading the settings to log the current user out and then log back in rather than a full system restart. – steamer25 – 2015-06-18T14:44:41.700

TechNet reference for MouseSpeed, MouseThreshold1 and MouseThreshold2: https://technet.microsoft.com/en-us/library/cc978665.aspx

– steamer25 – 2015-06-18T14:46:57.127

2-1 because the answer does not discuss how to increase mouse sensitivity BEYOND the limit. The current settings you've identified refer to documentation about settings that are automatically set in the Registry by using the control panel, and hence do not discuss increasing beyond the limit – Dan Nissenbaum – 2015-09-15T03:40:48.870

1

How do you refresh the settings? I tried with SendMessage, 0x1A,,,, ahk_id 0xFFF in autohotkey it didn't work. Also tried fooling around with the mouse dialog but it seemed to reset all my settings with values in dialog.

– Ciantic – 2013-03-05T09:32:17.713

Ever found the answer to this @ciantic ? – Nilzor – 2014-02-05T07:35:13.433

5

As MoE bis said, you need to edit the mouse acceleration curve. This refers to the registry keys

HKEY_CURRENT_USER\Control Panel\Mouse\SmoothMouseXCurve
HKEY_CURRENT_USER\Control Panel\Mouse\SmoothMouseYCurve

You can of course edit these values with the built-in registry editor, but it is more convenient to use the CustomCurve (direct download, archive link) application. This requires .NET Framework 4.0 or newer.

Screenshot:

CustomCurve application

I quote the short guide from the website:

Generally speaking:

  • The X value of a point represents how fast you move the mouse.
  • The Y value represents how much the cursor moves in response.

For a more in-depth explanation about the mouse acceleration curve, see this article.

Smi

Posted 2012-09-01T19:40:21.807

Reputation: 165

Does it also works for Windows 10? – wonsuc – 2018-04-22T21:06:39.467

Yes, it does. Very nice. – Patrice Gahide – 2019-08-23T21:42:58.880

2

The existing answers either do not work in Windows 10 or have no meaning, belonging to the old days when DPI was around 400, and Microsoft was making efforts to enhance its IntelliPoint software beyond hardware capabilities. Even when they work, these configuration parameters may at most set mouse sensitivity to the hardware's maximum, but not beyond that.

Today, the mouse tracking technology has advanced to a point that it doesn't make any sense for the consumer to understand, examining so many variables from which very few are under user control.

To be convinced, you may listen to this video of a Logitech engineer explaining DPI:

enter image description here

Dots per inch (DPI) stays the single most important parameter under user control for changing the measure of sensitivity. Almost all mouses sold today have about 1600 DPI. Gaming mouses usually have 4000 DPI or more, and can be increased/decreased by pressing a button on the mouse.

DPI is more of a marketing ploy for gaming mouse. In fact, many competitive first-person shooter game players set their mouse DPI to 1200 or even 800, because lower DPI gives you precision/sensitivity.

The most one can do for increasing mouse sensitivity is to get a sophisticated high-DPI mouse with a sophisticated driver externalizing adjustable parameters and the ability to define multiple usage profiles to account for the different conditions when employing different software products. Such mouses can usually change profiles at the press of a button, thus changing mouse sensitivity (among others).

harrymc

Posted 2012-09-01T19:40:21.807

Reputation: 306 093

0

  1. Run regedit.exe from the Windows search bar
  2. Go to HKEY_CURRENT_USER\Control Panel\Mouse
  3. Change MouseSensivity to 20 (10 = normal, 20 = twice as fast)
  4. Restart your PC

Just a random guest

Posted 2012-09-01T19:40:21.807

Reputation: 1