| 1. |
Solve : Batch File/GP installation issue? |
|
Answer» Hello, That is the problem, yes, you cannot run recursive MSI installs, and that's enforced using a mutex, so the log shows that the second install cannot run because there is already one in progress.Thanks. Any idea how to modify a batch file so multiple computers don't try and run recursive msi's? It'd be good to know if the computers could see if the installer is in use, wait till it's done and then start the install so it doesn't fail with the mutex error?It may be that the batch script is installing multiple things and not waiting between different installs. Using the /wait switch with the start command may help. start "" /w "file1.msi" /switches start "" /w "file2.msi" /switches start "" /w "file3.msi" /switchesThere's brand loyalty for you! |
|