@echo off echo ----------------------------------- echo ---Setting Environment Variables--- echo ----------------------------------- set thirdpartyGeneration= set buildType= echo thirdpartyGeneration=%thirdpartyGeneration% echo buildType=%buildType% echo ----------------------------------- echo ---End Setting Global Variables---- echo ----------------------------------- echo ----------------------------------- echo -------Calling Scripts------------- echo ----------------------------------- cd scripts echo Calling install_thirdparty_all.bat call install_thirdparty_all.bat %thirdpartyGeneration% %buildType% >> install.log 2>&1 cd .. echo ----------------------------------- echo -------End of the Script----------- echo ----------------------------------- pause exit