How can I create an automated Installer for a program that has a regular Installer with questions like:
- Install Directory,
- Accepting License,
- Creating Icon on Desktop
- etc...
Assuming that I am OK with building an Automated Installer for every program I want to separately, Or i want to put files in a Self Extracting Archive and run the Installer after unpacking.
Do I need a third party program for it? Should I use Command Prompt? Do I need to learn Lua? (I'm learning C#)
EDIT:
To clarify I'll use an example:
- Let's say i wrote a program but that program has a requirement, like DirectX, or Adobe Air, or Maxthon Browser.
- I wrote my program in such a way that I have to be sure that that is installed in a very specific Drive/Folder on the PC or with some specific preferences/parameters.
- I include an installer for this program, but I want to specify where it gets installed on the PC and with what parameters.
- Preferably Installing this requirement right after or during the Installation/Extraction of my own program.
I'm looking for a way to be able to run the Installer of any given program and navigate through the install wizard of it with out the user having to/being able to change the settings I need (with the foreknowledge and permission of the user of course).
It doesn't need to be silent install or anything.