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
- :
- InstallAnywhere
- :
- InstallAnywhere Forum
- :
- Adding external files
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
‎Aug 03, 2011
04:37 AM
Adding external files
Hi,
I am recreating my projects which were developed in ISMP5.3, in my previous projects I was adding some files as "external resources". Now I have to do the same with IA 2011. In ISMP 5.3 we can define each file to be "archive or external resource" but in IA 2011 there is only one option "Add external resource bundle" which also is in project tab not for particular files.
Can anyone help me to find the solution to add the files as "external resource" in IA 2011 Enterprise edition.
Thanks in advance.
I am recreating my projects which were developed in ISMP5.3, in my previous projects I was adding some files as "external resources". Now I have to do the same with IA 2011. In ISMP 5.3 we can define each file to be "archive or external resource" but in IA 2011 there is only one option "Add external resource bundle" which also is in project tab not for particular files.
Can anyone help me to find the solution to add the files as "external resource" in IA 2011 Enterprise edition.
Thanks in advance.
(6) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Aug 03, 2011
05:12 AM
IA 2011 has "Add files" option in "Install" tab.
This can be used to add files to the setup.
Do you have any issues using this option?
This can be used to add files to the setup.
Do you have any issues using this option?
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Aug 03, 2011
07:42 AM
No, I dont have any issue using this action. But this action adds files in archive what to do if I want to add the file as external.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Aug 05, 2011
04:08 PM
What exactly is an external resource in ISMP terms?
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Aug 11, 2011
10:33 AM
in ISMP we can add files externally. So the files are treated as ther external files (not a part of the setup archive). We can zip these resources and extract on the target system so that the setup can use them. This reduces the size of the exe. But I am not finding the same settings in IA.
One more thing, in our setup there are alot of logs collected after the installation. So at the uninstallation time we have some folers\files to be removed and some to be retained after uninstallation. In ISMP the settings for removal of the file\folder were given for each file but IA provides these settings at project lavel. So, whatever setting we apply, is applied for all the files\folders. This is another thing causing problems for me.
Thanks and regards
Atl
One more thing, in our setup there are alot of logs collected after the installation. So at the uninstallation time we have some folers\files to be removed and some to be retained after uninstallation. In ISMP the settings for removal of the file\folder were given for each file but IA provides these settings at project lavel. So, whatever setting we apply, is applied for all the files\folders. This is another thing causing problems for me.
Thanks and regards
Atl
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Aug 11, 2011
12:25 PM
... using the "Expand Archive" action?
It will allow you to choose an external zip, and what destination path to put it.
It will allow you to choose an external zip, and what destination path to put it.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Aug 12, 2011
02:59 AM
Hi,
If you are building with ant, then you can create directory at the place of your choice and put your external files/folders right there.
Then to get those data while executing setup, you can reference to $INSTALLER_LAUNCH_DIR$ or $EXTRACTOR_DIR$ variable (check documentation) in your installer which will point to the folder where setup file is located.
Regarding your uninstall issue, installanywhere will only delete files & folders it created itself. If you want those files to be deleted at uninstall time, then you can put them to a folder created via installer with option "Recursively delete all content of this folder during uninstall".
--Jerome
If you are building with ant, then you can create directory at the place of your choice and put your external files/folders right there.
Then to get those data while executing setup, you can reference to $INSTALLER_LAUNCH_DIR$ or $EXTRACTOR_DIR$ variable (check documentation) in your installer which will point to the folder where setup file is located.
Regarding your uninstall issue, installanywhere will only delete files & folders it created itself. If you want those files to be deleted at uninstall time, then you can put them to a folder created via installer with option "Recursively delete all content of this folder during uninstall".
--Jerome