1 2 3 4 5 6 7 |
for(1) { $aleatorio = Get-Random (1..100000) Start-Sleep -Seconds 5 [System.Windows.Forms.SendKeys]::SendWait($aleatorio) [System.Windows.Forms.SendKeys]::SendWait("{ENTER}") } |
1 2 3 4 5 6 7 |
for(1) { $aleatorio = Get-Random (1..100000) Start-Sleep -Seconds 5 [System.Windows.Forms.SendKeys]::SendWait($aleatorio) [System.Windows.Forms.SendKeys]::SendWait("{ENTER}") } |