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
- :
- Basic MSI project question
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Apr 08, 2010
05:24 PM
Basic MSI project question
I need to deliver ONLY the .msi file for installing the application. If I choose a Basic MSI project, can I still use InstallScript custom actions? I noticed that the folder containing the scripts is located outside the .msi file under my project folder.
If I just delivered the MSI, does it contain these Custom Action scripts, or will the installer break?
If I just delivered the MSI, does it contain these Custom Action scripts, or will the installer break?
(1) Reply
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Apr 08, 2010
08:33 PM
Yes, your custom actions will be encapsulated inside of a c++ dll and stored in the binary table. When your custom action is invoked, the dll is extracted to a temp directory, a scripting engine is fired that the processes your compiled function. All is cleaned up when it's done.
You don't need setup.exe or any other file other then your msi file.
You don't need setup.exe or any other file other then your msi file.