greatmajestics
greatmajestics

Reputation: 1093

How to create a Installation Bundle Package?

I have an application which require .net 2 and .net 4 framework with adobe reader , i want to install them before software installation, how i am supposed to do this? Kindly please guide me towards right direction.

Upvotes: 0

Views: 2190

Answers (3)

Bogdan Mitrache
Bogdan Mitrache

Reputation: 11013

What you need is basically a suite installation. The link I included shows how to do this with Advanced Installer (Disclaimer: I work on this tool). This is a commercial tool, but it saves you from learning to code Wix/NSIS projects, as it is completely GUI driven, thus you can built your installers without writing any code.

Upvotes: 1

Cosmin
Cosmin

Reputation: 21416

This is usually done by adding the packages you need as prerequisites for the main installer. Most commercial setup tools support prerequisites one way or another. Here is a list which can get you started: http://en.wikipedia.org/wiki/List_of_installation_software

Pick a tool and try using it to create your installer and add prerequisites for it. I recommend Advanced Installer or InstallShield. If you want a free solution, you can try WiX.

Upvotes: 1

ladenedge
ladenedge

Reputation: 13419

With NSIS as your installer, you can refer to the following pages for help with detecting and installing .NET:

Upvotes: 0

Related Questions