Created
September 2, 2016 20:09
-
-
Save itsff/b4a24acaa5e228ccedff92c36d706e34 to your computer and use it in GitHub Desktop.
Reverse mouse wheel scroll direction on Windows
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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