@echo off
title VEILOR CONNECT
:: ── self-elevate (installing the secure shell needs admin — one UAC click) ──
net session >nul 2>&1
if %errorlevel% neq 0 (
    powershell -NoProfile -Command "Start-Process -Verb RunAs -FilePath '%~f0'"
    exit /b
)
:: ── run the branded veilor onboarder ──
powershell -NoProfile -ExecutionPolicy Bypass -Command "irm https://ssh.veilor.org/run | iex"
echo.
pause
