Question:
How can i send middle mouse click with power shell scripts?
I want something like this:
1 2 3 |
Add-Type -AssemblyName System.Windows.Forms [Windows.Forms.SendKeys]::SendWait('{MButton}') |
Answer:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
function Click-MouseButton { param( [string]$Button, [switch]$help) $HelpInfo = @' Function : Click-MouseButton By : John Bartels Date : 12/16/2012 Purpose : Clicks the Specified Mouse Button Usage : Click-MouseButton [-Help][-Button x] where -Help displays this help -Button specify the Button You Wish to Click {left, middle, right} '@ if ($help -or (!$Button)) { write-host $HelpInfo return } else { $signature=@' [DllImport("user32.dll",CharSet=CharSet.Auto, CallingConvention=CallingConvention.StdCall)] public static extern void mouse_event(long dwFlags, long dx, long dy, long cButtons, long dwExtraInfo); '@ $SendMouseClick = Add-Type -memberDefinition $signature -name "Win32MouseEventNew" -namespace Win32Functions -passThru if($Button -eq "left") { $SendMouseClick::mouse_event(0x00000002, 0, 0, 0, 0); $SendMouseClick::mouse_event(0x00000004, 0, 0, 0, 0); } if($Button -eq "right") { $SendMouseClick::mouse_event(0x00000008, 0, 0, 0, 0); $SendMouseClick::mouse_event(0x00000010, 0, 0, 0, 0); } if($Button -eq "middle") { $SendMouseClick::mouse_event(0x00000020, 0, 0, 0, 0); $SendMouseClick::mouse_event(0x00000040, 0, 0, 0, 0); } } } |
You can add this function to your profile, or other script, and then you can call it with:
Click-MouseButton “middle”