Skip to content

Instantly share code, notes, and snippets.

@henrytao-me
Forked from arbourd/invert.md
Created January 12, 2024 00:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save henrytao-me/ab7bd2a87182946385dc05ecda9f5bae to your computer and use it in GitHub Desktop.
Save henrytao-me/ab7bd2a87182946385dc05ecda9f5bae to your computer and use it in GitHub Desktop.
Invert Windows 10 mouse scroll wheel
  1. Open Powershell as an administrator
  2. Run
    Get-ItemProperty HKLM:\SYSTEM\CurrentControlSet\Enum\HID\*\*\Device` Parameters FlipFlopWheel -EA 0 | ForEach-Object { Set-ItemProperty $_.PSPath FlipFlopWheel 1 }
  3. Verify that all mice devices have had their FlipFlopWheel attributes set to 1
    Get-ItemProperty HKLM:\SYSTEM\CurrentControlSet\Enum\HID\*\*\Device` Parameters FlipFlopWheel -EA 0
  4. Reboot
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment