BigStart.BAT


@echo off
cls  
echo ___________________________________________________________  
echo.  
echo enGenic Telephony System  
echo Bigstart.Bat TeleFlow Example Application: System Activator:  
echo ___________________________________________________________  
echo.

C:
cd \TeleFlowApp\bin

echo Pausing for 30 seconds... Give NT a chance to get started.  
echo (Press CTRL-C to abort startup process)  
rem  Give 30 seconds wait time for O/S to “calm down”  
NtSleep 30 /Q

echo Initializing Boards with AGMON  
echo 30 seconds...  
echo.  
rem  Required to boot/start the NMS boards  
AGMON -s  
NtSleep 1 /Q  
start "AGMON" /min AGMON.EXE  
NtSleep 29 /Q

echo.
echo Starting CTDaemon
echo 15 seconds...
echo.
NtSleep 15/Q

echo Start all the application lines  
echo 2 seconds...  
cd..  
rem  Start TFServer, which starts all application instances
rem  defined using TeleFlow Line List.  
start "TFServer" /min tfserver  
NtSleep 2 /Q

cd bin  
echo Start TeleFlow Monitor…  
echo 2 seconds...  
start TFMonitor.exe  
NtSleep 2 /Q

echo ------ Done. ------  
NtSleep 2 /Q  
exit


 ***The text in red may need to be adjusted.