Skip to content

Instantly share code, notes, and snippets.

@jeanfbrito
Forked from arbourd/invert.md
Created November 13, 2022 03:50
Show Gist options
  • Select an option

  • Save jeanfbrito/eca377e3aa31508739bada93a759cff1 to your computer and use it in GitHub Desktop.

Select an option

Save jeanfbrito/eca377e3aa31508739bada93a759cff1 to your computer and use it in GitHub Desktop.

Revisions

  1. @arbourd arbourd created this gist May 9, 2017.
    10 changes: 10 additions & 0 deletions invert.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,10 @@
    1. Open Powershell as an administrator
    2. Run
    ```powershell
    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
    ```powershell
    Get-ItemProperty HKLM:\SYSTEM\CurrentControlSet\Enum\HID\*\*\Device` Parameters FlipFlopWheel -EA 0
    ```
    4. Reboot