Jump to content

How to stop other programs from begin install?


Recommended Posts

Hi Guys..

I really need your help.

Appreciated in advance...

I have some programs to install via WPI and i have this problem...

There are programs installing right in time, but there are others that don´t wait for the finish of others... its a mess...

how do you guys resolve this problem...if it is possible....for me its complicated...

Sorry my bad English...

Link to comment
Share on other sites


Hi Kelsenellenelvian!

Ths for your answer...

Here is my config.js file:

// WPI Config 7.2.0+

//

// User defined options

//

//---------------------------------------------------------------------------------------------

// Reference ... prog[0] won't be used. It's just an example.

// Look in program.js to see explanation of these properties.

//---------------------------------------------------------------------------------------------

// pn=0; // start value for prog numbering

// prog[pn]=['ProgramName'];

// uid[pn]=['APP1'];

// desc[pn]=['Description'];

// ordr[pn]=[0];

// dflt[pn]=['no'];

// bit64[pn]=['no'];

// forc[pn]=['false'];

// cat[pn]=['Application Category'];

// configs[pn]=['List of configs to be auto checked. Comma seperated'];

// cmds[pn]=['Command Lines'];

// deps[pn]=[];

// excl[pn]=[];

// cond[pn]=['Javascript Conditional Statement'];

// gcond[pn]=['Javascript Conditional Statement to gray item'];

// picf[pn]=['Picture File'];

// picw[pn]=['Width'];

// pich[pn]=['Height'];

// textl[pn]=['Text Location'];

// pn++;

//---------------------------------------------------------------------------------------------

// Your programs here ...

//---------------------------------------------------------------------------------------------

pn=1;

prog[pn]=['Adobe Reader 9'];

uid[pn]=['ADOBEREADER9'];

desc[pn]=['Adobe Reader 9'];

ordr[pn]=[1];

dflt[pn]=['yes'];

forc[pn]=['no'];

bit64[pn]=['no'];

cat[pn]=['Programas'];

cmds[pn]=['"%wpipath%\\Install\\Adobe Reader 9 Installer.exe"'];

pn++;

prog[pn]=['7Zip Setup 4.57'];

uid[pn]=['7ZIPSETUP'];

desc[pn]=['7Zip Setup - Compactador e Descompactador'];

ordr[pn]=[2];

dflt[pn]=['yes'];

forc[pn]=['no'];

bit64[pn]=['no'];

cat[pn]=['Programas'];

cmds[pn]=['"%wpipath%\\Install\\7zip457.exe"'];

picf[pn]=['7Zip.jpg'];

textl[pn]=['Top'];

pn++;

prog[pn]=['Ccleaner v217'];

uid[pn]=['CCLEANERINSTALLER'];

desc[pn]=['Ccleaner Setup Versão 217'];

ordr[pn]=[3];

dflt[pn]=['yes'];

forc[pn]=['no'];

bit64[pn]=['no'];

cat[pn]=['Programas'];

cmds[pn]=['"%wpipath%\\Install\\ccsetup217.sfx.exe"'];

picf[pn]=['ccleaner.jpg'];

textl[pn]=['Top'];

pn++;

prog[pn]=['Cd Burner 4.2.4 -1235'];

uid[pn]=['CDBURNER424'];

desc[pn]=['Cd Burner 424'];

ordr[pn]=[4];

dflt[pn]=['yes'];

forc[pn]=['no'];

bit64[pn]=['no'];

cat[pn]=['Programas'];

cmds[pn]=['"%wpipath%\\Install\\cdbxp_setup_4.2.4.1235.sfx.exe"'];

pn++;

prog[pn]=['Flash Player Plugin'];

uid[pn]=['FLASHPLAYERPLUGIN'];

desc[pn]=['Flash Player Plugin'];

ordr[pn]=[5];

dflt[pn]=['yes'];

forc[pn]=['no'];

bit64[pn]=['no'];

cat[pn]=['Programas'];

cmds[pn]=['"%wpipath%\\Install\\install_flash_player.sfx.exe"'];

pn++;

prog[pn]=['PDF995'];

uid[pn]=['PDF995'];

desc[pn]=['PDF995 - Gera ficheiros em Formato PDF ao imprimiir.'];

ordr[pn]=[6];

dflt[pn]=['yes'];

forc[pn]=['no'];

bit64[pn]=['no'];

cat[pn]=['Programas'];

cmds[pn]=['"%wpipath%\\Install\\DriverPdf995.exe"'];

pn++;

prog[pn]=['Gimp 266 Setup'];

uid[pn]=['GIMP266SETUP'];

desc[pn]=['Gimp 266 Setup -Editor de Imagem'];

ordr[pn]=[7];

dflt[pn]=['yes'];

forc[pn]=['no'];

bit64[pn]=['no'];

cat[pn]=['Programas'];

cmds[pn]=['"%wpipath%\\Install\\Gimp_266.exe"'];

pn++;

prog[pn]=['Java 6 -Update 11'];

uid[pn]=['JAVATM6UPDATE11'];

desc[pn]=['Java 6 -Update 11'];

ordr[pn]=[8];

dflt[pn]=['yes'];

forc[pn]=['no'];

bit64[pn]=['no'];

cat[pn]=['Programas'];

cmds[pn]=['"%wpipath%\\Install\\Java6_update11.exe"'];

pn++;

prog[pn]=['Mozilla Firefox 3.0.7'];

uid[pn]=['MOZILLAFIREFOX307'];

desc[pn]=['Mozilla Firefox 3.0.7'];

ordr[pn]=[9];

dflt[pn]=['yes'];

forc[pn]=['no'];

bit64[pn]=['no'];

cat[pn]=['Programas'];

cmds[pn]=['"%wpipath%\\Install\\Firefox_307.exe"'];

pn++;

prog[pn]=['Format Converters Office 2007'];

uid[pn]=['FORMATCONVERTERSOFFICE200'];

desc[pn]=['Format Converters Office 2007'];

ordr[pn]=[10];

dflt[pn]=['yes'];

forc[pn]=['no'];

bit64[pn]=['no'];

cat[pn]=['Programas'];

cmds[pn]=['"%wpipath%\\Install\\FormatConverters_2007.exe"'];

pn++;

//---------------------------------------------------------------------------------------------

// End of program definitions ...

//---------------------------------------------------------------------------------------------

Link to comment
Share on other sites

...but there are others that don´t wait for the finish of others... its a mess...

This is not your problem - your problem is, that the application before starts a new process and exit itself.

e.g.: some installers simply extract an msi-installer and start it as new process - if you start such an installer wpi doesn't know the msi-installer and starts the next setup.

The best way to avoid this, is to extract the installer and run the setup manually.

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...