An installer for multiple programs?

Soldato
Joined
4 Nov 2007
Posts
4,514
Looking to steamline some processes at work, just wondering where I would begin on combining the installation of several programs at once, pretty nifty programmer when needs be, just need pointing the right direction.

Thanks :)
 
what programs are they?

you can install msi installers using /qb switch usually, or NSIS installers using /SILENT or /S


msfn.org is the place to look (forums) for appication switches

you could list them all in one .bat file...


ie

7zip.exe /S
office2003.msi /qb


etc..

there's more to it than i've posted, just look on msfn.org :)


if you list the programs, chances are people will just know the switches for them
 
Java 1.6.0.3
Asta Power Project
Project Commander
XP SP3
Office 03 or 07
Firefox 2
Adobe Reader 8
PDF Creator
DWG Viewer

Think that's about it for standard installs.

I think you meant post it on msfn.org, will do now.
 
For a 1 installer you would be on forever installing it, that probably would be a massive program unless you did a network install using batch files.
 
I'v been using Inno Setup to do pretty much what you seem to be doing, mine compiles to a single exe that installs 24 different programs, loads of registry settings and other bits and bobs.

I'v been creating this to automate the install of lots of different programs and settings into laptops that we have at work. Its also quite easy to do aswell which helps.
 
What on earth are you talking about?

In english please.

Your wanting to do silant installs on a network? or for single machines?

Like I said you could use a batch file with silant installs. I am confused myself about exactly what your asking?

If you were to combine 1 .msi file your just asking for trouble with all them applications. (If this is what you wanted). Would take ages to install and qould be quit big of a file.
 
Your wanting to do silant installs on a network? or for single machines?

Like I said you could use a batch file with silant installs. I am confused myself about exactly what your asking?

If you were to combine 1 .msi file your just asking for trouble with all them applications. (If this is what you wanted). Would take ages to install and qould be quit big of a file.

Oh right, well essentially thats what bledd said, one big batch script, which isn't like a huge msi installer.
 
For a 1 installer you would be on forever installing it, that probably would be a massive program unless you did a network install using batch files.

The installer would only call the other ones though, ala using a batch file.

There was a package manager for windows (download and install latest programs) similar to the various Linux ones (apt-get, pacman, yum) maybe you could take that as a base and include your own programs.

Can't remember the name of it though, sorry
 
Back
Top Bottom