Full Package Deployment

Perrover

Member
Hi list.

We have had some troubles deploying full packages. When we deploy a full package all the folders in the pathcode are installed on those workstations, even if those workstations have installed OW without Development folders.

There is anybody who could tell me how to deploy only production folders.

Thanks for all.



Robert.
Technical Consultant.
 
Hi Robert,

I am using the following batch for the silent install of the production
objects (it must be launched from a command prompt from the root of the
destination drive):


rmdir c:\b7 /s /q
rmdir d:\b7 /s /q
del c:\winnt\jde.ini
"\\DEPL_SRV\B7333\OneWorld Client Install\setup.exe" -S -P FULLPACKAGENAME
-D \B7 -t Compact
exit

Regards,
Viorel
Xe, SP13, NT, SQL7.
 
Try modifying your package inf file for the package in question (located under \b7333\package_inf folder) and take out Development Objects:

[Typical]
Name=Development
Description=Install the development objects
Components=Production Objects,Development Objects,Foundation,Data
1KB=2133025792
2KB=2144405504
4KB=2168311808
8KB=2219769856
16KB=2355838976
32KB=2664529920
64KB=3328638976

Change Components line to:
Components=Production Objects,Foundation,Data

Hi list.

We have had some troubles deploying full packages. When we deploy a full package all the folders in the pathcode are installed on those workstations, even if those workstations have installed OW without Development folders.

There is anybody who could tell me how to deploy only production folders.

Thanks for all.



Robert.
Technical Consultant.
--------------------------
Visit the forum to view this thread at:
http://198.144.193.139/cgi-bin/wwwthreads/showflat.pl?Cat=&Board=OW&Number=12834
 
Have a closer look at your package.inf file. This file defines which
directories will be installed when you select the Production or Development
Client Install.
 
Back
Top