This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- Re: [Windows 7] Merge Module fails if MSI is launched instead of setup.exe
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
‎Feb 27, 2010
08:14 AM
[Windows 7] Merge Module fails if MSI is launched instead of setup.exe
Hello,
Sorry for bugging you again 😉
See this thread for previous info: http://community.flexerasoftware.com/showthread.php?t=192342
The Custom Actions now work now, but my included BDE Merge Module (Yes, BDE. Don't laugh, we're doing serious business :D) fails to install ("failed to merge configurations"). I think this is the same problem, the "action" isn't executed in system context. Is there any way to modifiy the Merge Module to request those rights? I've imported the BDE Pro 5.11 merge module object from our old InstallShield 3 Express installation.
Using IS 2010 Premier with Basic MSI project.
Thanks,
Manuel
Sorry for bugging you again 😉
See this thread for previous info: http://community.flexerasoftware.com/showthread.php?t=192342
The Custom Actions now work now, but my included BDE Merge Module (Yes, BDE. Don't laugh, we're doing serious business :D) fails to install ("failed to merge configurations"). I think this is the same problem, the "action" isn't executed in system context. Is there any way to modifiy the Merge Module to request those rights? I've imported the BDE Pro 5.11 merge module object from our old InstallShield 3 Express installation.
Using IS 2010 Premier with Basic MSI project.
Thanks,
Manuel
(2) Replies
‎Feb 27, 2010
09:38 AM
BDE? Hahahaha
Ok, I got that out of my system. And yes, I'm just kidding. People still support and build upon legacy platforms so naturally we still need deployment solutions for them.
Here's some general advice from experience. It's not too specific due to the fact that I haven't used BDE since Delphi 3 some 11 years ago.
Most merge modules provided from vendors are pretty poor. I would ditch the merge module and replace it with a custom rolled setup prerequisite. Create a prereq that can call into BDEs setup program and consume that in your setup.exe. Then write a corrosponding System Search / Setup Condition ( AppSearch / LaunchCondition ) in your MSI that gates the install if BDE wasn't correctly installed. Your workflow becomes
setup.exe
ask to install / install BDE if needed
setup.msi
block install if BDE not installed
Then in your MSI you only concern yourself with installing your application and configuring the BDE for your datasource. Or whatever they call a datasource in BDE... sorry, it's been a long time for me and I'd have to deep dive back in to relearn all the details.
BTW, heres a little tutorial for writing prereqs
http://blog.deploymentengineering.com/2006/11/using-installshield-12-to-install-net.html
Ok, I got that out of my system. And yes, I'm just kidding. People still support and build upon legacy platforms so naturally we still need deployment solutions for them.
Here's some general advice from experience. It's not too specific due to the fact that I haven't used BDE since Delphi 3 some 11 years ago.
Most merge modules provided from vendors are pretty poor. I would ditch the merge module and replace it with a custom rolled setup prerequisite. Create a prereq that can call into BDEs setup program and consume that in your setup.exe. Then write a corrosponding System Search / Setup Condition ( AppSearch / LaunchCondition ) in your MSI that gates the install if BDE wasn't correctly installed. Your workflow becomes
setup.exe
ask to install / install BDE if needed
setup.msi
block install if BDE not installed
Then in your MSI you only concern yourself with installing your application and configuring the BDE for your datasource. Or whatever they call a datasource in BDE... sorry, it's been a long time for me and I'd have to deep dive back in to relearn all the details.
BTW, heres a little tutorial for writing prereqs
http://blog.deploymentengineering.com/2006/11/using-installshield-12-to-install-net.html