Invert Windows scroll direction

Written on September 03, 2014

I’m running Windows 8 on a Macbook Pro via Boot Camp. One thing you’ll notice - and it will quickly become annoying if you switch back and forth a lot - is that the trackpad’s scroll direction on Windows is the opposite of OS X.

OS X is basically imitating a touchscreen whereby you push the page up to scroll down and vice versa to scroll up. That’s perfectly fine and my prefered behavior.

To change the scroll direction in Windows, open a PowerShell window as Administrator Start-Process powershell -Verb runAs and execute the following command:

Get-ItemProperty HKLM:\SYSTEM\CurrentControlSet\Enum\HID\*\*\Device` Parameters FlipFlopWheel -EA 0 | ForEach-Object { Set-ItemProperty $_.PSPath FlipFlopWheel 1 }

That’s it. The trackpad’s scroll direction on Windows and OS X are now the same.

Let me know your favorite Windows tweak, tip or trick.

Martin Buberl

Purveyor of Internet duct tape.
If you'd like to get in touch, feel free to shout @martinbuberl.