Multiple MSI installs via BAT scripts

Thank you very much for your replies.

How does the below action script look? You said the folder i select (called Verint in this case) gets extracted in the __Download folder - so the MSIS DIR would just be __Download and not __Download\Verint?

prefetch ba2d9e7a4d2a206030e6d7cb67bdd097966cca9e sha1:ba2d9e7a4d2a206030e6d7cb67bdd097966cca9e size:225269469 http://servername.domain.COM:52311/Uploads/ba2d9e7a4d2a206030e6d7cb67bdd097966cca9e/Verint.tmp sha256:39cd6475aeb5e1d9fb930e325d6495dfd3a14a0975a5dc6fd6927431a3353ca0
extract ba2d9e7a4d2a206030e6d7cb67bdd097966cca9e

delete __createfile
// CREATEFILE
createfile until END_OF_FILE

@echo off
setlocal
REM The script uses parameters for silent reboot when reboot is required
REM Continue running the script after each reboot until each script is installed successfully
REM If installation fails, the EXIT_CODE is 1


set MSIS_DIR=__Download\Verint
set INSTALLFOLDER=C:\Program Files\Verint\DesktopApplications

SET EXIT_CODE=0

echo Desktop Resources Installation
msiexec -i "__Download\Verint\DesktopResources-KB190992-Verint-15.2.7.15.msi" USE_COMMAND_LINE=1 TARGETDIR="%INSTALLFOLDER%" /qn
IF %errorlevel% NEQ 0 (
SET /A EXIT_CODE=1
echo ---installer failed
) ELSE (
echo ---installer succeeded
)


echo Screen Capture Module
msiexec /i "__Download\Verint\ScreenCapture-KB181217-15.2.5.658.msi" USE_COMMAND_LINE=1 INSTALLDIR="c:\CaptureService\" ENCRYPTION_DATAENCRYPT=TRUE CONN_INTG_SVC=TRUE INTG_SERVERS=servername.com:port,servername.com:port /qn
IF %errorlevel% NEQ 0 (
SET /A EXIT_CODE=1
echo ---installer failed
) ELSE (
echo ---installer succeeded
)



echo Desktop Connection Manager
msiexec /i "__Download\Verint\DesktopConnectionManager-KB181233-15.2.7.14.msi" SERVERADDR=servername.com DRSERVER=MyDRServ USEFQDN=Yes USEHTTPS=Y /qn
IF %errorlevel% NEQ 0 (
SET /A EXIT_CODE=1
echo ---installer failed
) ELSE (
echo ---installer succeeded
)

echo Desktop Messaging Client
msiexec /i "__Download\Verint\DesktopMessagingClient-KB192725-15.2.7.17.msi" AUTOSTART=Y /qn
IF %errorlevel% NEQ 0 (
SET /A EXIT_CODE=1
echo ---installer failed
) ELSE (
echo ---installer succeeded
)

END_OF_FILE

delete agent.bat
move __createfile agent.bat

override wait
hidden=true
completion=job
wait agent.bat