Jump to content

Recommended Posts

Posted (edited)

Hi, this is my first attempt ! :)

To use Left Hand Mouse:

Open Notepad and type this:

Option Explicit

Set WSHShell = WScript.CreateObject("WScript.Shell")

Dim WSHShell, n, p, itemtype, mybox

p = "HKCU\Control Panel\Mouse\SwapMouseButtons"

itemtype = "REG_SZ"

n = "1"

WSHShell.RegWrite p, n, itemtype

MyBox = MsgBox("You must Log Off/Log On for the changes to take effect.", 64,"Done")

Save as.. Filename.vbs

To Use Right Hand Mouse:

Open notepad and type this:

Option Explicit

Set WSHShell = WScript.CreateObject("WScript.Shell")

Dim WSHShell, n, p, itemtype, mybox

p = "HKCU\Control Panel\Mouse\SwapMouseButtons"

itemtype = "REG_SZ"

n = "0"

WSHShell.RegWrite p, n, itemtype

MyBox = MsgBox("You must Log Off/Log On for the changes to take effect.", 64,"Done")

Save as.. Filename.vbs

Download this file:

SwapMouse.rar

Edited by King-Of-Hearts

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...