@echo off
title RYHO SOFT - Sistema de Cotizaciones
set "URL=https://ryhosoft.duckdns.org"
echo Abriendo RYHO SOFT...

rem --- Microsoft Edge (viene con Windows) ---
set "NAV=%ProgramFiles(x86)%\Microsoft\Edge\Application\msedge.exe"
if exist "%NAV%" goto abrir
set "NAV=%ProgramFiles%\Microsoft\Edge\Application\msedge.exe"
if exist "%NAV%" goto abrir

rem --- Google Chrome ---
set "NAV=%ProgramFiles%\Google\Chrome\Application\chrome.exe"
if exist "%NAV%" goto abrir
set "NAV=%LocalAppData%\Google\Chrome\Application\chrome.exe"
if exist "%NAV%" goto abrir

rem --- Sin Edge ni Chrome: navegador por defecto ---
start "" "%URL%"
exit /b

:abrir
start "" "%NAV%" --app="%URL%" --window-size=1366,860
exit /b
