Scripting Fat Client Install

JitiOneWorld

Active Member
We are using the OneWorld fat client, and we would like to know how to script the install from the deployment server for new desktop installations. What we would like to do is have a batch file or something similar that with one execution will do the entire install (choose a package that is defined in the script).

Does anybody know how we might go about doing this? Is it possible?
 
Check the download section of JDEList for a document called OneWorld FAT
Client Management.

Colin
 
Sure its possible. Below is part of a .bat file script we use for a full silent install:

REM **** OneWorld XE Client Installation - Silent Mode ****
REM
REM Explanation of command line parameters:
REM -V : Verbose mode (shows progress on screen display)
REM -P PD7333FA : Package name
REM -D D:\B7 : Directory to install into
REM -t Compact : Only installs production objects (no .c or .h files)
REM -r : Removes existing installation before installing new package
REM
"\\deploymentserver\B7333\OneWorld Client Install\setup.exe" -V -P PD7333FB -D C:\B7 -t Compact -r

Search the forums for more examples on this.
 
Back
Top