I created a Package. This package has 8 .MSI files and 1 .CMD file. The CMD file calls each .MSI file like this.
for /f %%a in ('dir *.msi /b') do (
msiexec /i "%%a" ALLUSERS=1 /qn )
I add this package to my UDI wizard and then deploy it. It never runs and not only does it not run but in the \CACHE folder there is nothing for it. All my other apps do install and have files in the local \CACHE but not this one.
Is installing .MSI's like this allowed in a task sequence? Or do I have to run them individually in separate packages?