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
- :
- Create Pure 64bit setup that includes InstallScript CA ?
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 25, 2016
08:30 AM
Create Pure 64bit setup that includes InstallScript CA ?
Hi
I'm using Basic MSI project with InstallScript CA.
Is it possible to create a pure 64bit setup ?
When I build the setup I get this error
error: ISDEV : error -7318: InstallScript Custom Action TEST must not be included in a strict 64-bit package.
I'm using Basic MSI project with InstallScript CA.
Is it possible to create a pure 64bit setup ?
When I build the setup I get this error
error: ISDEV : error -7318: InstallScript Custom Action TEST must not be included in a strict 64-bit package.
(1) Reply
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Aug 30, 2016
01:47 PM
If your MSI setup is expected to run on Windows installations that still support 32-bit applications, InstallScript custom actions can still be used. As things currently stand, the only version of Windows that does not support 32-bit code at all is Windows 2016 Nano Server. However, since Nano Server also doesn't support MSI installations, this requirement is irrelevant.
WOW64 support is optional on Windows Server 2008 R2 and newer, so there could be situations that these custom actions will not be able to run. However, since the majority of setup.exe based installers, including Microsoft's installers, are 32-bit, disabling the WOW64 feature runs the risk of not being able to install a number of software packages.
This error can be ignored unless you absolutely need to ensure that your setup does not contain any 32-bit install time code. If this is a requirement, a 64-bit MSI DLL action should be used instead of InstallScript custom actions.
WOW64 support is optional on Windows Server 2008 R2 and newer, so there could be situations that these custom actions will not be able to run. However, since the majority of setup.exe based installers, including Microsoft's installers, are 32-bit, disabling the WOW64 feature runs the risk of not being able to install a number of software packages.
This error can be ignored unless you absolutely need to ensure that your setup does not contain any 32-bit install time code. If this is a requirement, a 64-bit MSI DLL action should be used instead of InstallScript custom actions.
