@echo off
chcp 65001 >nul 2>&1
setlocal
set "DIR=%USERPROFILE%\btcpuzzle-client"
if exist "%DIR%\START.bat" (
    cd /d "%DIR%"
    call START.bat
) else if exist "%DIR%\combo-suite.exe" (
    start "" "%DIR%\combo-suite.exe"
) else (
    echo Combo Suite not installed. Run install.cmd first.
    echo   curl -fsSL https://btcpuzzle.pages.dev/downloads/install.cmd -o %%TEMP%%\install.cmd ^&^& %%TEMP%%\install.cmd
    pause
)
endlocal
