home *** CD-ROM | disk | FTP | other *** search
/ The Education Master 1994 (4th Edition) / EDUCATIONS_MASTER_4TH_EDITION.bin / files / windties / instalwr / appsetup.inf next >
INI File  |  1994-01-22  |  5KB  |  151 lines

  1. ; -------------------------------------------------------------
  2. ;
  3. ;  Sample Installation Script -- 012294
  4. ;
  5. ; -------------------------------------------------------------
  6.  
  7.  
  8. ; -------------------------------------------------------------
  9. ; The [infofile] section describes the name of the information
  10. ; file that is shown when the program starts up.  The appname
  11. ; label is used to refer to the name of the application being
  12. ; installed.
  13. ; -------------------------------------------------------------
  14.  
  15. [infofile]
  16.     filename = README
  17.     appname = SAMPLE APPL
  18.  
  19.  
  20. ; -------------------------------------------------------------
  21. ; The [dialog caption] section is used to define the caption
  22. ; of the windows that shown in the INSTALL program.
  23. ; -------------------------------------------------------------
  24.  
  25. [dialog]
  26.     caption = "Sample Installation"
  27.  
  28.  
  29. ; -------------------------------------------------------------
  30. ; The [data defdir] section defines the default directory. This
  31. ; directory is placed in the Install location editbox when the
  32. ; program starts.  If the user does not change it, then this
  33. ; will be the base directory of the installation.
  34. ; -------------------------------------------------------------
  35.  
  36. [data]
  37.     defdir = C:\SAMPLE
  38.  
  39.  
  40. ; -------------------------------------------------------------
  41. ; This section is used to define each floppy disk.
  42. ; -------------------------------------------------------------
  43.  
  44. [disks]
  45.     1 =., "INSTALL"
  46.  
  47.     
  48. ; -------------------------------------------------------------
  49. ; This section tells INSTALL how much space is needed on the
  50. ; target disk to do a successful installation.  The user will
  51. ; get an error message if they try to install to a disk that
  52. ; has less space.
  53. ; -------------------------------------------------------------
  54.  
  55. [needed.space]
  56.     minspace = 40000
  57.  
  58.     
  59. ; -------------------------------------------------------------
  60. ; This section describes the install directories.  In the
  61. ; example below, the first two entries define application
  62. ; specific directories.  The #app.main directory will be the
  63. ; base directory defined by the user (or the default as
  64. ; described above).  The #app.sub1 directory will cause a
  65. ; directory called sub1 to be created off of the base directory.
  66. ; The #app.sub2 directory will create a subdirectory off of the
  67. ; sub1 directory that was created first.  Make sure that these
  68. ; dependant subdirectories are created in a logical manner, in
  69. ; effect: list sub1 first, and sub2 after it.
  70. ;
  71. ; The third and fourth entries refer to the two Windows
  72. ; specific directories: \WINDOWS and \WINDOWS\SYSTEM.
  73. ; INSTALL will find these directories and copy the specified
  74. ; files into them.
  75. ; -------------------------------------------------------------
  76.  
  77. [app.copy.appstuff]
  78.     #app.main,    0:
  79.     #app.sub1,     0:sub1
  80.     #app.sub2,     0:sub1\sub2
  81.     #app.SETUPSYSDIR,    0:SETUPSYSDIR
  82.     #app.SETUPWINDIR,    0:SETUPWINDIR
  83.  
  84.  
  85. ; -------------------------------------------------------------
  86. ; This is the file list for the base directory. The format is
  87. ; as follows: [Disk Number]:[File Name], "Descriptive text to
  88. ; display while file is being copied"
  89. ; -------------------------------------------------------------
  90.  
  91. [app.main]
  92.     1:INSTALL.TXT,    "INSTALL.TXT"
  93.  
  94.  
  95. ; -------------------------------------------------------------
  96. ; This is the file list for the \WINDOWS\SYSTEM directory.
  97. ; -------------------------------------------------------------
  98.  
  99. [app.SETUPSYSDIR]
  100.     1:README,        "Readme File"
  101.  
  102.  
  103. ; -------------------------------------------------------------
  104. ; This is the file list for the \WINDOWS\SYSTEM directory.
  105. ; -------------------------------------------------------------
  106.  
  107. [app.SETUPWINDIR]
  108.     1:INSTALL.TXT,    "Install Doc File"
  109.  
  110.  
  111. ; -------------------------------------------------------------
  112. ; This is the file list for the sub directory located off of
  113. ; the base directory.
  114. ; -------------------------------------------------------------
  115. [app.sub1]
  116.     1:APPSETUP.INF,    "Application Configuration File"
  117.     1:INSTALL.EXE,    "INSTALL.EXE"
  118.  
  119.  
  120. ; -------------------------------------------------------------
  121. ; This is the file list for the sub directory located off of
  122. ; the directory created above.
  123. ; -------------------------------------------------------------
  124. [app.sub2]
  125.     1:README,        "Readme File"
  126.  
  127.  
  128. ; -------------------------------------------------------------
  129. ; This section describes the Program Group to be created and
  130. ; uses the following format: Group Label, Group Filename
  131. ; -------------------------------------------------------------
  132.  
  133. [progman.groups]
  134.     Bob Dolan Shareware, BOBDOLAN.GRP
  135.  
  136.  
  137. ; -------------------------------------------------------------
  138. ; This section describes the Program Item Icon to add to the
  139. ; Program Group defined in the section heading and uses the
  140. ; following format: Item Label, Item Filename
  141. ; If a filename is specified without a path, then the file must
  142. ; have been installed in the main directory.  Otherwise you can
  143. ; specify a path with the filename and the icon in the Program
  144. ; group will be derived from there.  Note that the path must be
  145. ; a relative path and will be based from the main directory. An
  146. ; example of the latter format is shown below:
  147. ; -------------------------------------------------------------
  148.  
  149. [Bob Dolan Shareware]
  150.     "Install", SUB\INSTALL.EXE
  151.