This commit is contained in:
urieljarethbusiness-cpu
2026-05-17 10:14:14 -06:00
parent d8773b2508
commit 64b3d15b90
61 changed files with 7612 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
@echo off
setlocal
title Knowledge Station - Abrir
set "ROOT=%~dp0"
set "ROOT=%ROOT:~0,-1%"
powershell -NoProfile -ExecutionPolicy Bypass -File "%ROOT%\scripts\start-platform.ps1" -Root "%ROOT%"
if errorlevel 1 (
echo.
echo No se pudo abrir la plataforma. Revisa el mensaje anterior.
pause
exit /b 1
)
echo.
echo Puedes dejar esta ventana cerrada. Para apagar la plataforma usa cerrar_estacion.bat.
pause
exit /b 0