home *** CD-ROM | disk | FTP | other *** search
/ CD Direkt 1995 #4-#5 / CDD_05_95.ISO / cdd / winanw / helpwrit / appsetup.inf next >
INI File  |  1994-10-26  |  20KB  |  460 lines

  1.  
  2. ; -------------------------------------------------------------
  3. ; *************************************************************
  4. ; -------------------------------------------------------------
  5. ;
  6. ;  Sample Installation Script -- 052094
  7. ;
  8. ; -------------------------------------------------------------
  9. ; *************************************************************
  10. ; -------------------------------------------------------------
  11.  
  12.  
  13. ; -------------------------------------------------------------
  14. ; *************************************************************
  15. ; -------------------------------------------------------------
  16. ; About This File
  17. ; ===============
  18. ;
  19. ; This file, APPSETUP.INF, contains information that InstallWare uses to 
  20. ; install applications. This file must be in the same directory as the 
  21. ; program files IW.EXE(if used) and INSTALL.EXE. The two files can be on 
  22. ; a floppy disk, a hard disk, or a network disk drive.
  23. ;
  24. ; The information in this file determines
  25. ;   * The names of the disks and directories from which, and to which, 
  26. ;     InstallWare copies files.
  27. ;
  28. ;   * The name of the group that InstallWare creates in Program Manager's
  29. ;     window, and the names of program items that InstallWare adds to that 
  30. ;     group.
  31. ;
  32. ; You can create your own InstallWare program by changing some of the 
  33. ; information in this file.
  34. ;
  35. ; The Parts of APPSETUP.INF
  36. ; -------------------------
  37. ;
  38. ; APPSETUP.INF is similar in format to a Windows initialization (.INI) file.
  39. ;
  40. ; Sections: APPSETUP.INF is divided into sections. Each section is identified
  41. ;           by a name enclosed in square brackets.
  42. ;
  43. ;           Most section names are "hard-coded". However, some section names
  44. ;           are defined within other sections, and are therefore easily 
  45. ;           customizable.
  46. ;
  47. ; Comments: A comment begins with a semicolon. You can include a comment 
  48. ;           on the same line as syntax, as long as it comes after the syntax.
  49. ; Spaces:   Spaces are ignored, except when between double quotes.
  50. ;           Blank lines are also ignored.
  51. ;
  52. ; Sections in This File
  53. ; ---------------------
  54. ; The rest of this file contains the actual sections and statements
  55. ; that make up the working file. It also includes comments that 
  56. ; explain each section and statement.
  57. ;
  58. ;
  59. ;
  60. ;
  61. ;
  62. ; -------------------------------------------------------------
  63. ; *************************************************************
  64. ; -------------------------------------------------------------
  65. ; INFOFILE
  66. ; -------------------------------------------------------------
  67. ; *************************************************************
  68. ; -------------------------------------------------------------
  69. ; The [infofile] section describes various miscellaneous aspects
  70. ; of the installation.  The FILENAME label indicates the name of 
  71. ; the text file that is shown to the user when the program starts 
  72. ; up.  The APPNAME label is used to refer to the name of the 
  73. ; application being installed.
  74. ;
  75. ; The EXEFILE label is used to tell InstallWare that you would
  76. ; like to run a file after the installation is complete.  This
  77. ; is useful for showing a readme file, unpacking some archives,
  78. ; or just starting up the program that was just installed.  In
  79. ; the example below, note that the filename starts with a backslash.
  80. ; This indicates that the program is in the PATH.  Otherwise,
  81. ; it is assumed to be located relative to the installation
  82. ; directory.  The MESSAGE label denotes the text that will be
  83. ; displayed in the message box that prompts the user just before
  84. ; the EXEFILE is run.  If there is no MESSAGE, then the EXEFILE
  85. ; is run without prompting the user.
  86. ; -------------------------------------------------------------
  87.  
  88. [infofile]
  89.     filename = Install.txt
  90.     appname  = "VB HelpWriter"
  91.         exefile  = "\notepad.exe readme.txt"
  92.     message  = "Do you want to view the readme file?"
  93.  
  94.     
  95. ; -------------------------------------------------------------
  96. ; *************************************************************
  97. ; -------------------------------------------------------------
  98. ; DIALOG
  99. ; -------------------------------------------------------------
  100. ; *************************************************************
  101. ; -------------------------------------------------------------
  102. ; The [dialog caption] section is used to define the caption
  103. ; of the windows that shown in the INSTALL program.
  104. ; -------------------------------------------------------------
  105.  
  106. [dialog]
  107.     caption = "VB HelpWriter Installation"
  108.  
  109.  
  110. ; -------------------------------------------------------------
  111. ; *************************************************************
  112. ; -------------------------------------------------------------
  113. ; DATA
  114. ; -------------------------------------------------------------
  115. ; *************************************************************
  116. ; -------------------------------------------------------------
  117. ; The [data defdir] section defines the default directory. This
  118. ; directory is placed in the Install location editbox when the
  119. ; program starts.  If the user does not change it, then this
  120. ; will be the base directory of the installation.
  121. ; -------------------------------------------------------------
  122.  
  123. [data]
  124.     defdir = C:\HelpWrit
  125.  
  126.  
  127. ; -------------------------------------------------------------
  128. ; *************************************************************
  129. ; -------------------------------------------------------------
  130. ; DISKS
  131. ; -------------------------------------------------------------
  132. ; *************************************************************
  133. ; -------------------------------------------------------------
  134. ;
  135. ; The [disks] section defines the distribution disks that contain the
  136. ; application  files. InstallWare uses this information to tell the user to
  137. ; insert the correct disk.
  138. ; Elsewhere within this .INF file, the distribution disks are normally
  139. ; referred to by a single-character disk ID. This section defines those
  140. ; disk IDs, and includes  information about the disk to which each disk ID
  141. ; refers.
  142. ;
  143. ; The disk ID '0' is reserved; it represents the installation directory -- 
  144. ; the directory in which the user is installing the application. 
  145. ;
  146. ; The format of each disk definition is:
  147. ;     n = path, title
  148. ;
  149. ; where
  150. ;     n       is the disk ID (a single character from 1-9 or A-Z). 
  151. ;
  152. ;     path    the path of the source directory from which InstallWare should 
  153. ;             copy the files to the disk.  The path can be relative to the
  154. ;             source directory (see examples below).
  155. ;
  156. ;     title   is a descriptive name for the disk. The title should match 
  157. ;             the disk's printed or written label exactly.
  158. ;
  159. ; The following statements would define two distribution disks.
  160. ;  1 =.,        "Demo Application Disk 1"
  161. ;  2 =.\files,  "Demo Application Disk 2"
  162. ;
  163. ; The first statement tells InstallWare to refer to Disk 1 as "Demo Application 
  164. ; Disk 1". Because the period (.) denotes the current directory, the files 
  165. ; on that disk will be copied from the root directory of the
  166. ; distribution disk. 
  167. ;
  168. ; The second statement tells InstallWare to refer to Disk 2 as "Demo 
  169. ; Application Disk 2"; the files that Disk 2 contains will be copied 
  170. ; from the \FILES directory of the distribution disk.
  171. ;
  172. ; You can include as many disk-definition statements as necessary. Every 
  173. ; distribution disk should have a corresponding disk-definition statement;
  174. ; otherwise, InstallWare cannot tell the user to insert the appropriate disk.
  175. ;
  176. ; For the purposes of this file we will use this disk definition line:
  177.  
  178. [disks]
  179.     1 =., "INSTALL DISK"
  180.     2 =., "DICTIONARY DISK"
  181.  
  182.  
  183.     
  184. ; -------------------------------------------------------------
  185. ; *************************************************************
  186. ; -------------------------------------------------------------
  187. ; NEEDED.SPACE
  188. ; -------------------------------------------------------------
  189. ; *************************************************************
  190. ; -----------------------------