I Know there's a few variations of this question around and I have looked through them to try and find a solution but I'm not having any luck currently. I'm trying to run a series of installs (4) from one command file but it will only run the first install.
I've got a main cmd file with the contents as such:
call "Architecture 2015\Install.cmd"
call "Inventor 2015\Inventor2015_Install.cmd"
call "Mechanical 2015\Mechanical2015_Install.cmd"
call "Civil 2015\Civil2015_Install.cmd"
Each of those cmd files contains this:
"<path>\Setup.exe" /W /q /I Img\Autocad Architecture 2015.ini /language en-us
I've tried using
start /wait cmd /k call "Architecture 2015\Install.cmd"
On each but it still only runs the first. I can't use an exact time because it isn't always consistent over the network. Any help would be appreciated.