@echo off
title MegaSelling Node Installer
echo ==============================================
echo   MegaSelling - Turn this PC into a video node
echo ==============================================
echo.
net session >nul 2>&1
if %errorlevel% neq 0 (
  echo Requesting administrator permission... please click Yes.
  powershell -Command "Start-Process -FilePath '%~f0' -Verb RunAs"
  exit /b
)
set "T="
set "C=https://gvf-backend.fly.dev"
echo Installing... (first run downloads AI models - this can take a while)
powershell -NoProfile -ExecutionPolicy Bypass -Command "irm %C%/api/download/installer.ps1 -OutFile \"$env:TEMP\ms.ps1\"; powershell -NoProfile -ExecutionPolicy Bypass -File \"$env:TEMP\ms.ps1\" -CentralUrl '%C%' -Token '%T%'"
echo.
echo Done. You can close this window.
pause
