Jump to content

Creating an installer that will open a lot of other installers

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
6 replies to this topic

#1
Panarchy

Panarchy

    Programming Professional

  • Members
  • PipPipPipPipPip
  • 258 posts
Hello

Currently learning to be a network admin, and thought it may be a good idea to learn how to install multiple programs from just double clicking one exe.

I'm looking at something with a wizard; eg: NSIS.

The reason I want this is as an alternative to having an image (with all settings and programs that will be installed onto a blank hard-drive. Images include OS).

My argument is: Why format/image a computer that is running well? And also to have an alternative to imaging.

Please recommend some software that can be used for this.

Thanks in advance,

Panarchy

PS: I think NSIS maybe able to do what I need... but please tell me if that is the case, and also recommend other softwares, so I can evaluate and decide which is the best for my requirements.

#2
Guest_Jordan_*

Guest_Jordan_*
  • Guests
I think you should just write a batch file that launches the other installers. You will need to install the software in silent mode.

At our work we use Altiris. With Altiris you can do what you describe above remotely (sitting at your desk while the computer you are installing software on is 600 miles away). It is expensive but worth it.

#3
WingedPanther

WingedPanther

    A spammer's worst nightmare

  • Moderators
  • 16,831 posts
I second Jordan's advice: a batch file is simple to write. When I was teaching, I was at a school that had about 20 computer labs (figure 600 computers) that had to be reset to a known state at the beginning of each term. In a situation like that, imaging the drives was MUCH faster/easier than installing software, even in silent mode.
Programming is a branch of mathematics.
My CodeCall Blog | My Personal Blog

#4
Panarchy

Panarchy

    Programming Professional

  • Members
  • PipPipPipPipPip
  • 258 posts
Hmm...

How do I put it in silent mode?

It isn't as simple as @echo off is it?

Also, is there a program like Altiris, but free?

#5
WingedPanther

WingedPanther

    A spammer's worst nightmare

  • Moderators
  • 16,831 posts
I believe that Jordan was referring to an non-interactive installer mode. Most programs require some form of interaction as part of the install process. They also usually offer command-line parameters to fill in the selections they normally request so you can just issue the command and it runs. Otherwise, you aren't gaining anything.
Programming is a branch of mathematics.
My CodeCall Blog | My Personal Blog

#6
Guest_Jordan_*

Guest_Jordan_*
  • Guests
That is correct, I was referring to the options to automatically fill in the installation criteria so you do not need to interact with the installer. I do not know of any sort of program that is similar to Altiris and free. Are you doing this for a business or are you doing it at home just to learn?

#7
Panarchy

Panarchy

    Programming Professional

  • Members
  • PipPipPipPipPip
  • 258 posts
Just at home to learn....

Panarchy