79836381

Date: 2025-12-02 22:48:57
Score: 1.5
Natty:
Report link

This Matthew's powershell script should do the trick:

while ($true)
{
  $pos = [System.Windows.Forms.Cursor]::Position
  $x = $pos.X+1
  $y = $pos.Y+1
  [System.Windows.Forms.Cursor]::Position = New-Object System.Drawing.Point($x, $y)
  Start-Sleep -Seconds 1
}

reference: https://gist.github.com/MatthewSteeples/ce7114b4d3488fc49b6a

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: essential