Click here to Skip to main content
15,892,059 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am using InstallShield 11 and creating a basic MSI project for a 64 Bit machine.
When I run my setup on a 32 Bit machine, the Windows installer shows a message that
"This installation package is not supported by the processor."
Now the problem is that I want the InstallShield setup to show another message instead:
64bit processor required!
Posted

1 solution

This message is shown automatically by Windows Installer and cannot be customized.

If you really want a custom message, you can try this approach:

create a custom EXE bootstrapper which determines if the target platform is 32-bit or 64-bit
if it's 32-bit show your custom message
if it's 64-bit launch the MSI package

There is no predefined solution, so you would need to write the EXE yourself. Personally, I don't think it's worth it.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900