Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to add .NET Framework 3.5 and other prerequisites to InstallShield project

I can create setup file in InstallShield 2009

I don't know how to add the .NET Framework 3.5 and other prerequisites to the InstallShield project.


i creae installscript project in instalshield2009 it has not
"Redistributables view."

like image 433
saman Avatar asked May 26 '10 05:05

saman


People also ask

How do I create a prerequisite in InstallShield?

In the View List under Application Data, click Prerequisites. 2. Select the check box in front of the InstallShield prerequisite that you want to add. Tip: The right pane in the Prerequisites view shows details about the InstallShield prerequisite that is selected in the list of available redistributables.


2 Answers

InstallShield provides the prerequisites functionality. You can use this in your MSI project. This would ensure that these prerequisites are only installed if they are not already present in the target machine.

If you do not want to include these components like .NET Framework 3.5 into your installer then you can use the redistributable setup installer. .net 3.5 redistributable setup installer is about 3MB and when this is included into the prerequisites of your InstallShiled project then the installer will check if .net 3.5 framework is already installed on the target machine and if not it will prompt the user and download the entire .net 3.5 framework and install it.

you can check this out for if you have very specific Install Shield queries.

like image 83
pavanred Avatar answered Nov 09 '22 10:11

pavanred


For .NET Framework 3.5 redistributables, you need to add the appropriate Microsoft .NET Framework prerequisite. That's done through the Redistributables view.

For InstallShield 2009, follow the instructions here.

like image 32
Robert Harvey Avatar answered Nov 09 '22 11:11

Robert Harvey