I am trying to use iexpressto run my batch file, which will execute for me 2 exe files and 1 msi. when I try to do it manually, it works.
Below is the code in my batch file.
Start /wait %CD%\1.exe /q
Start /wait %CD%\2.exe /q
msiexec.exe /i "%CD%\3.msi"
but this does not seem to work when I create an exe file from iexpress.

Link
There is code in the above article (for copying files to temp folder), but I can not understand the syntax.
MKDIR %Tmp%\<UNIQUE PRODUCT NAME>
XCOPY . %Tmp%\<UNIQUE PRODUCT NAME> /S /E /Y
%Tmp%\<UNIQUE PRODUCT NAME>\setup.exe
source
share