Skip to content

Instantly share code, notes, and snippets.

@yujinlin0224
Created August 21, 2022 01:39
Show Gist options
  • Save yujinlin0224/8d538e3c6f324764b88159314278dd52 to your computer and use it in GitHub Desktop.
Save yujinlin0224/8d538e3c6f324764b88159314278dd52 to your computer and use it in GitHub Desktop.
Make all mice in Windows scrolling like macOS (natural/reverse mouse scrolling)
Get-ChildItem 'HKLM:\SYSTEM\CurrentControlSet\Enum\HID' -Include 'Device Parameters' `
-Recurse -Depth 2 -ErrorAction 'SilentlyContinue' |
Select-Object -ExpandProperty PSPath |
Where-Object { (Get-Item $_).Property -Contains 'FlipFlopWheel' } |
ForEach-Object { Set-ItemProperty $_ 'FlipFlopWheel' -Value 1 }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment