Two MSI installers where each adds its folder if the other is already installed #9177
-
|
I have a Windows application that installs a common program along with two optional data folders:
I want to create two separate MSI packages: The desired behavior is:
My question: Is it possible to achieve this "additive install" behavior with two separate MSI installers using standard Windows Installer features? If not, what is the recommended MSI-compliant way to achieve this kind of scenario? If exist... Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 11 replies
-
|
Yes, this is supported by the Windows Installer. Sharing requires more discipline, but the Windows Installer is one of the few installation technologies that bothered to make it work. 😄 |
Beta Was this translation helpful? Give feedback.
-
|
I'm trying to understand your scenario. You say the app and both folders have to be in both MSI so how are the MSI different? I'd have to dive deeper into your app design/behavior but I suspect there might be ways to simplify this and still achieve your goals. |
Beta Was this translation helpful? Give feedback.
Yes, this is supported by the Windows Installer. Sharing requires more discipline, but the Windows Installer is one of the few installation technologies that bothered to make it work. 😄