Theldron Posted November 29, 2018 Posted November 29, 2018 Hi all, We have a new member of staff who is left handed and wants to use the mouse with the mouse buttons switched. I have setup a logon script to switch the buttons in the registry but this works intermittently. Any other ideas that might work better? Cheers
jthompson Posted November 29, 2018 Posted November 29, 2018 If the registry setting itself is reliable, and it's just the script that doesn't always get run, you could try applying the reg settings using a GPO, and set up security filtering on the GPO to target only the user(s) needed. 1
andy_b Posted November 29, 2018 Posted November 29, 2018 Autohotkey script / exe ? - https://www.autohotkey.com/ ;Swap Mouse Buttons ;Win + F1 to swap ;Win + F2 to revert ;Environment #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. SendMode Input ; Recommended for new scripts due to its superior speed and reliability. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. #NoTrayIcon #SingleInstance force #F1:: DllCall("SwapMouseButton",int,true) return #F2:: DllCall("SwapMouseButton",int,false) return 1
PD1279 Posted November 29, 2018 Posted November 29, 2018 I would as well go for the Targeted GPO setting as much easier and will follow them around if they login to another machine 1
Theldron Posted November 29, 2018 Author Posted November 29, 2018 Thats brilliant thanks guys ill try the targeted GPO registry change and see how it goes. Thanks again.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now