11 lines
413 B
Batchfile
11 lines
413 B
Batchfile
@echo off
|
|
chcp 65001 >nul
|
|
echo ============================================================
|
|
echo INVENTERA WEB APPLICATION INSTALLER
|
|
echo This build does not include the client agent or RustDesk.
|
|
echo ============================================================
|
|
echo.
|
|
rem Build the installer for the complete Inventera web application.
|
|
call "%~dp0build_inventera_installer_windows.bat" "%~1"
|
|
exit /b %errorlevel%
|