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
- :
- 32bit and 64bit installation in one installer
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
‎Sep 15, 2008
08:40 PM
32bit and 64bit installation in one installer
Hi,
I'd like to create an installer that is capable of installing in either 32bit or 64bit machine. The installer will be smart enough to know the target platform and install the appropriate files, jre, etc. Therefore, if it's a 64bit machine, then the installer will only install the 64bit files. How can this be implemented?
Thanks!
I'd like to create an installer that is capable of installing in either 32bit or 64bit machine. The installer will be smart enough to know the target platform and install the appropriate files, jre, etc. Therefore, if it's a 64bit machine, then the installer will only install the 64bit files. How can this be implemented?
Thanks!
(5) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Sep 16, 2008
01:28 AM
Please search for 'Template Summary Property' in installshield help
-praveen
-praveen
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Sep 16, 2008
03:01 AM
thanks for the info, but i'm required to use only InstallAnywhere
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Feb 19, 2009
04:21 AM
Any solution to this?
How have single installer which will put 32 bit/64 bit jre according to platform?
Is it that I need to package all the jres 32, bit+64 bit+platformSpecificJre with the installer?
How have single installer which will put 32 bit/64 bit jre according to platform?
Is it that I need to package all the jres 32, bit+64 bit+platformSpecificJre with the installer?
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Feb 19, 2009
06:59 AM
qqqqqq wrote:
Any solution to this?
How have single installer which will put 32 bit/64 bit jre according to platform?
Is it that I need to package all the jres 32, bit+64 bit+platformSpecificJre with the installer?
I'm afraid that yes, you need to bundle everything if you want a single installer... Personally, I think it's better to have two installers, one for each platform...
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Mar 03, 2009
03:40 PM
What I did was to have separate folders for the platform specific items on the build machine, say 32bin and 64bin. Then I make a folder bin, and inside it, put the two speedfolders with custom rules that check platform/bit size (on linux, call Runtime.getRuntime().exec("getconf LONG_BIT") and massage its output). Then the platform independent items go in their own separate speedfolders. This makes your installer larger because it has to carry around both folders for the platform specific stuff, but if your independent stuff is big enough who cares about the extra couple meg?