Reverse mouse scroll on Windows 10

Because Windows standard scrolling is just wrong.

Eryc da Silva
Jul 24, 2017 · 1 min read

Start PowerShell as administrator and run the code:

Get-ItemProperty HKLM:\SYSTEM\CurrentControlSet\Enum\HID\*\*\Device` Parameters FlipFlopWheel -EA 0 | ForEach-Object { Set-ItemProperty $_.PSPath FlipFlopWheel 1 }

The FlipFlopWheel 1 makes it reverse. Change it back to 0 to revert the changes.

Note: If you’re running an external mouse, disconnect and connect it again for the changes to take effect.