Skip to content

Instantly share code, notes, and snippets.

@khanhdodang
Forked from MatthewSteeples/mousemove.ps1
Created May 4, 2022 08:36
Show Gist options
  • Save khanhdodang/9f52c4e921dc4f4a59989c3d2cdabd8a to your computer and use it in GitHub Desktop.
Save khanhdodang/9f52c4e921dc4f4a59989c3d2cdabd8a to your computer and use it in GitHub Desktop.
Powershell Script to keep the mouse moving
Add-Type -AssemblyName System.Windows.Forms
while ($true)
{
$Pos = [System.Windows.Forms.Cursor]::Position
$x = ($pos.X % 500) + 1
$y = ($pos.Y % 500) + 1
[System.Windows.Forms.Cursor]::Position = New-Object System.Drawing.Point($x, $y)
Start-Sleep -Seconds 10
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment