Creating the MSI installer and separate installation files

Is it possible to create a msi file using installshield, so that I have one small msi that installs files from a separate folder, instead of a single msi file that contains everything that needs to be installed? The fact is that the MSI installer and the ability to replace the files that need to be installed (if I want to update them sometime later) instead of rebuilding the entire project after changing some updated files.

+2
source share
1 answer

This is not supported by MSI packages.

It doesn’t matter if the files are placed in a folder next to MSI or in a .cab archive. Actual file information is stored in the MSI database. Therefore, you cannot replace installation files without updating MSI.

+4
source

Source: https://habr.com/ru/post/1441661/


All Articles