invert scroll wheel on Windows7

use Powershell to change the registry for all mouse HID devices:
Get-ItemProperty HKLM:\SYSTEM\CurrentControlSet\Enum\HID\*\*\Device` Parameters FlipFlopWheel -EA 0 | ForEach-Object { Set-ItemProperty $_.PSPath FlipFlopWheel 1 }

This entry was posted in Microsoft. Bookmark the permalink.