Untitled
Anonymous
plain_text
08/30/2024 2:49 AM
468 B
17
Indexable
Add-Type -AssemblyName System.Windows.Forms
Add-Type -AssemblyName System.Drawing
function Simulate-Click {
$pos = [System.Windows.Forms.Cursor]::Position
$mouse_event = [System.Windows.Forms.MouseButtons]::Left
[System.Windows.Forms.SendKeys]::SendWait("{LEFTCLICK}")
}
while ($true) {
Simulate-Click
Start-Sleep -Seconds 20
}
Editor is loading...
Leave a Comment