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
- :
- install feature/component from net
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
‎May 22, 2008
09:14 AM
install feature/component from net
Hi!
Does anyone know, is there any options in Basic MSI project that are similar with features options "FTP location" and "HTTP location" from InstallScript MSI project? I have one .exe file that I have to install on user machine if it is not already installed, but I don't want to include it in setup.exe because it has big size, I want to download it from the web. Is it possible in Basic MSI project?
Thanks!
Does anyone know, is there any options in Basic MSI project that are similar with features options "FTP location" and "HTTP location" from InstallScript MSI project? I have one .exe file that I have to install on user machine if it is not already installed, but I don't want to include it in setup.exe because it has big size, I want to download it from the web. Is it possible in Basic MSI project?
Thanks!
(3) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎May 22, 2008
09:52 AM
One option might be to create a setup prerequisite for your large, optional file; that gives the option to download the file from a URL you provide...
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎May 23, 2008
04:12 AM
This was my first idea, to create a prerequisite, but I have a condition for installing that file like following:
a AND (b OR c OR d)
I don't know how to add these "OR" conditions in the setup prerequisite, so because of that I search for another solution...
a AND (b OR c OR d)
I don't know how to add these "OR" conditions in the setup prerequisite, so because of that I search for another solution...
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎May 23, 2008
01:16 PM
Is it an option to use a Web media type where all .cab files will be stored at a URL you specify?
Otherwise, if you're willing to use an InstallScript custom action, CopyFile and XCopyFile will accept a URL as a file source. Of course, using such a custom action will require custom handling for uninstall, rollback, uninstall-rollback, repair, and so forth, but it might be an option...
Otherwise, if you're willing to use an InstallScript custom action, CopyFile and XCopyFile will accept a URL as a file source. Of course, using such a custom action will require custom handling for uninstall, rollback, uninstall-rollback, repair, and so forth, but it might be an option...