Skip to content

Instantly share code, notes, and snippets.

@itsff
Created September 2, 2016 20:09
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save itsff/b4a24acaa5e228ccedff92c36d706e34 to your computer and use it in GitHub Desktop.
Save itsff/b4a24acaa5e228ccedff92c36d706e34 to your computer and use it in GitHub Desktop.
Reverse mouse wheel scroll direction on Windows
# Copied from: http://superuser.com/a/364353
# Change registry settings
# Reverse mouse wheel scroll FlipFlopWheel = 1
# Normal mouse wheel scroll FlipFlopWheel = 0
Get-ItemProperty HKLM:\SYSTEM\CurrentControlSet\Enum\HID\*\*\Device` Parameters FlipFlopWheel -EA 0 | ForEach-Object { Set-ItemProperty $_.PSPath FlipFlopWheel 1 }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment