PowerShell/Microsoft/Automated_Keyboard_input.ps1

10 lines
205 B
PowerShell

# Script by Timur@0x01337.com
# Date: 2023-11-24
while ($true) {
Add-Type -AssemblyName System.Windows.Forms
[System.Windows.Forms.SendKeys]::SendWait('.')
Start-Sleep -Seconds 60
}