Jump to content

using setup options (general question)


Recommended Posts

Hi everybody,

I found WPI a couple of days here. After trying a few small simple installsamples i have the following question:

Is it poosible to use the setupoptions of a program in WPI? E.g. no Google-Toolbar installation, no automatic update and some other options depending the installed program?

After searching the forum I found Automate-It. Is this the only way to use alle the Setup-options a programm offers?

Thanks!

Flo

Link to comment
Share on other sites


After searching the forum I found Automate-It. Is this the only way to use alle the Setup-options a programm offers?

Of course not.

Depending on the installer you have more or less possibilities.

Here are some examples:

MSI

msiexec /i "!CD!\********.msi" ADDLOCAL=ALL REBOOT=ReallySuppress /passive /norestart /qb

You can also create a transform-file with all informations

NSIS

"!CD!\********.exe" /S

Installs all - no other options possible

Inno-Setup

"!CD!\********.exe" /SILENT /NOCANCEL /NORESTART /SP-

Install all - with arguemnt /SAVEINF="settings.inf" you can store you changes and use them later with /LOADINF="settings.inf"

"!CD!\********.exe" /SILENT /NOCANCEL /NORESTART /SP- /COMPONENTS="********" /TASKS="" /LANG="********" /PASSWORD="********" /DIR="%PROGRAMFILES%\********"

Some more switches - I get the necessary values bythe SAVEINF-arguemnt

Installshield

"!CD!\********.exe" -r

Create a file with all informations (can be found in c:\windows\setup.iss)

"!CD!\********.exe" -s -f1"!CD!\setup.iss" -f2"%WINDIR%\Temp\********.log"

Run the setup with the created setup-file.

To find application-switches I use appdeploy.com

Al

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...