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
- :
- MSI with DIMs fails to recognise x64
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 20, 2013
04:30 AM
MSI with DIMs fails to recognise x64
I have a Basic MSI built with DIM modules and I have specified 'x64' in the Template Summary. When I try to install it on Windows 7 x64 it fails saying the hardware is incompatible. I have successfully built x64 installations before, without DIMs, but this one fails for some reason.
Any ideas?
Any ideas?
(7) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Aug 20, 2013
08:07 AM
Consuming a DIM is much like consuming a merge module - it shouldn't be able to fundamentally alter the MSI; it should just add components and so forth to it. Further if that error's the one I'm thinking of, I've only seen it while running a 64-bit MSI on a 32-bit OS. Could you perhaps capture the exact error text, verify the machine's OS is in fact x64, and perhaps verify the template summary and look at a verbose log? That should help figure out the next steps.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Aug 20, 2013
09:46 AM
From the log:
Property(C): Intel = 6
Property(C): Msix64 = 6
Property(C): MsiAMD64 = 6
Property(C): MsiNTProductType = 1
Property(C): ServicePackLevelMinor = 0
Property(C): ServicePackLevel = 1
Property(C): WindowsBuild = 7601
Property(C): VersionNT64 = 601
Property(C): VersionMsi = 5.00
Property(C): VersionDatabase = 200
Anything else that would be useful?
Property(C): Intel = 6
Property(C): Msix64 = 6
Property(C): MsiAMD64 = 6
Property(C): MsiNTProductType = 1
Property(C): ServicePackLevelMinor = 0
Property(C): ServicePackLevel = 1
Property(C): WindowsBuild = 7601
Property(C): VersionNT64 = 601
Property(C): VersionMsi = 5.00
Property(C): VersionDatabase = 200
Anything else that would be useful?
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Aug 22, 2013
03:41 PM
Did you specify x64 or X64 as the template summary value? Only the former (lowercase) is valid. Unfortunately our IDE hasn't always enforced this well.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Aug 23, 2013
09:08 AM
I was hoping to find a good article to link you to on that, but they're surprisingly difficult to find. For example, Microsoft's documentation of the Template Summary Property helpfully tells you only that you use Intel64 to indicate you run on the Intel64 platform. So here's a simple list as I understand it:
- Intel—Intel's i386 architecture; 32-bit, and supported almost everywhere Windows runs (however 32-bit systems will not run packages targeting the architectures below)
- Intel64—Intel's original 64-bit architecture also known as Itanium; no longer supported by recent versions of Windows
- AMD64—AMD's 64-bit architecture; now a deprecated or obsolete way of specifying it, it is now known as x64
- x64—AMD's 64-bit architecture, also adopted by Intel, sometimes called em64t, and the most common architecture for 64-bit Windows today
- Arm—A common architecture for mobile devices; Windows RT runs on this, but you cannot realistically target it today (nor does InstallShield support it today)
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Aug 23, 2013
10:04 AM
That's useful, thanks. Seems to be working now!