deploy large file with

  • Thread starter Thread starter kerpal
  • Start date Start date
K

kerpal

Hi all,

Suppose I have a single file (over the capacity of a single CD) to be packed
into my setup project and the whole VB.NET application is to be distributed
on 2 or more CDs.
Any recommendations on how I can go about presumably compressing that file
and creating the installation CDs?

Thanks a lot.
 
Maybe a better approach would be to find a way to make the file smaller.

For example, if you are trying to deploy a database, export the data to a
text file and create the DB from the exported data after the install. (A
typically will compress quite a bit)

What kind of file are you trying to deploy, maybe someone can advise you on
how to make it take up less room.

Regards
Brian W
 
kerpa

one answer would be to only install the app itself (presuming your large file is data), which can be done from one CD, then when the app ran the first time, it could prompt for the second & subsequent CDs and unpack the data file itself

regard

dermot
 
You could try breaking this file into 2 larger cabs. Go to the setup project's property page, select Package Files: In
cabinet file's, and create a large custom cab size. Help from this property page claims that this is the
recommended way of breaking up an install across diskettes; CD would probably be a similar story.
 
Back
Top