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

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
  • Recently Browsing   0 members

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