Setup.exe has 3 msi and MSP
Hi All
Setup.exe has 3 msi's and I've got an msp as well, how do I package these up together using Wise
Setup.exe has 3 msi's and I've got an msp as well, how do I package these up together using Wise
0 Comments
[ + ] Show comments
Answers (3)
Please log in to answer
Posted by:
SKRN
12 years ago
Generally setup which has multiple MSI files tend to provide a Installation log which states the order in which the MSI files were installed. You might need to check the log files created during installation under the application installation directory. Another way is to track the EVENTVWR entries during installation. Once these are identified, you can either cook up a .BAT file or a .VBS file which takes care of installing the packaging MSI's and the MSP in the right order. If SCCM or other deployment tools are used, you must be able to sequence the application installation as suggested by Coppr. However, in some cases, there will always be one main installer file and few support files or prerequisites which are required. Analyse the MSI files to determine the right one which is required.
Posted by:
Arminius
12 years ago
Answer: you don't. Best practice would be to run each MSI in order and configure them with MSTs to ensure they are configured correctly. Nesting MSIs is almost never a good idea and if you're taking about repackaging 3 MSIs into one, that would be even worse (think patching, upgrades, etc).
In the past, I've taken the installer apart whenever possible and chained the MSIs to complete the install.
In the past, I've taken the installer apart whenever possible and chained the MSIs to complete the install.
Posted by:
Coppr
12 years ago
For the msi's, I would suggest creating a transform for each to conform to any internal policies you have regarding structure of application packages. You could then chain them either using a batch file or vbscript, or using a deployment solution like SCCM/Altiris.
You could also determine which msi the msp is for, and using the msiexec /p command, you could patch the msi and deploy the already patched msi, instead of having to run the msp after installing the msi's.
You could also determine which msi the msp is for, and using the msiexec /p command, you could patch the msi and deploy the already patched msi, instead of having to run the msp after installing the msi's.
Comments:
-
To get installation order of MSI's...visit EVENTVWR and check logs. - wise.sachin 12 years ago