Created
November 7, 2017 23:23
-
-
Save DerekParry/05b57f149eaf3aa9e5c3751dd91c830a to your computer and use it in GitHub Desktop.
[MSI GP60 Laptop] Enable reverse scrolling and two-finger tap right click
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
| REM SUMMARY: | |
| REM This script is meant to enable two features that are not available in the Elan Smart-Pad | |
| REM additional mouse options after upgrading to Windows 10. A one-time registry edit would | |
| REM normally do the trick, but these specific changes do not persist after restarting the | |
| REM computer, so it is necessary to update these values on startup. | |
| REM INSTRUCTIONS: | |
| REM Open the "Run" command with (Win key + R) | |
| REM Type "shell:startup" without the quotes and hit Enter | |
| REM Place this file in the directory that pops up, ensuring that the file has a ".bat" extension | |
| REG ADD HKEY_CURRENT_USER\Software\Elantech\SmartPad /v SC_Reverse_Enable /t REG_DWORD /d 1 /f | |
| REG ADD HKEY_CURRENT_USER\Software\Elantech\SmartPad /v SC_Reverse_ShowItem /t REG_DWORD /d 1 /f | |
| REG ADD HKEY_CURRENT_USER\Software\Elantech\SmartPad /v Tap_Two_Finger /t REG_DWORD /d 1 /f | |
| REG ADD HKEY_CURRENT_USER\Software\Elantech\SmartPad /v Tap_Two_Finger_Enable /t REG_DWORD /d 1 /f | |
| rundll32.exe user32.dll, LockWorkStation |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment