mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-03-26 14:26:10 +01:00
Add move-mouse-pointer.ps1
This commit is contained in:
parent
973222dd24
commit
69fae9b22d
33
Scripts/move-mouse-pointer.ps1
Normal file
33
Scripts/move-mouse-pointer.ps1
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
<#
|
||||||
|
.SYNOPSIS
|
||||||
|
Moves the mouse pointer
|
||||||
|
.DESCRIPTION
|
||||||
|
This PowerShell script moves the mouse pointer either to the given x/y coordinate or just slightly.
|
||||||
|
.PARAMETER x
|
||||||
|
Specifies the x coordinate in pixels
|
||||||
|
.PARAMETER y
|
||||||
|
Specifies the y coordinate in pixels
|
||||||
|
.EXAMPLE
|
||||||
|
PS> ./move-mouse-pointer.ps1 100 100
|
||||||
|
.LINK
|
||||||
|
https://github.com/fleschutz/PowerShell
|
||||||
|
.NOTES
|
||||||
|
Author: Markus Fleschutz | License: CC0
|
||||||
|
#>
|
||||||
|
|
||||||
|
param([int]$x = -1, [int]$y = -1)
|
||||||
|
|
||||||
|
try {
|
||||||
|
Add-Type -AssemblyName System.Windows.Forms
|
||||||
|
|
||||||
|
if (($x -eq -1) -and ($y -eq -1)) {
|
||||||
|
$Pos = [System.Windows.Forms.Cursor]::Position
|
||||||
|
$x = $pos.X + 5
|
||||||
|
$y = $pos.Y + 5
|
||||||
|
}
|
||||||
|
[System.Windows.Forms.Cursor]::Position = New-Object System.Drawing.Point($x, $y)
|
||||||
|
exit 0 # success
|
||||||
|
} catch {
|
||||||
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||||||
|
exit 1
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user