home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 8 / CDASC08.ISO / VRAC / BARMITZ.ZIP / INSTALL.DAT < prev    next >
Text File  |  1993-08-16  |  2KB  |  105 lines

  1.  
  2. /* INSTALLATION OF PROGRAM:      */
  3. /*
  4.  *    FILE:INSTALL.DAT
  5.  *
  6.  *    DESC:
  7.  *        This is a basic installation program for the (Program Name)
  8.  *        The new @ChDir and @ChDrive commands are also demonstrated in the
  9.  *        @Finish/@EndFinish block.
  10.  */
  11.  
  12. @DefineProject
  13.         @Name           = "Smart -N- Easy Bar Mitzvah Planner"      /* Program Name   */
  14.         @Version        = "1.0"          /* Version Number */
  15.         @Subdir         ="\\BM\\"   /* This is the Default Install Directory */
  16.         @OutDrive       =C
  17.         @Requires       3000000          /* Requires 3 meg of free disk space */
  18. @EndProject
  19.  
  20. @Display
  21.     @Cls
  22.  
  23.                        AUTOMATED SYSTEMS
  24.                          P.O. Box 503
  25.                     West Paterson, NJ 07424
  26.                         (201) 812-1428
  27.  
  28.         This program will install @Name
  29.         Version @Version on your computer system.
  30.  
  31.         You may press the [Esc] key at any time to abort the installation.
  32.  
  33. @Pause
  34. @EndDisplay
  35.  
  36. @GetOutDrive
  37.         @Suppress A      /* Do not allow installation to A: */
  38.         @Suppress B      /* Do not allow installation to B: */
  39.         @Cls
  40.    Which disk drive do you wish to install @Name?
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54. @EndOutDrive
  55.  
  56. @GetSubdir
  57.     @Cls
  58.      Now you need to specify the destination subdirectory on your
  59.      hard disk where the @Name will be installed.
  60.  
  61.       The default subdirectory "BM" will be used.
  62.       You may modify the directory name by backspacing over the
  63.       default directory and entering a new directory name.
  64.  
  65.  
  66.  
  67.     @Prompt = "Which subdirectory ([Enter] = @Subdir) ?"
  68. @EndSubdir
  69.  
  70. /* First Disk */
  71. @DefineDisk
  72.         @Label = "DISK 1"
  73. @Beginlib PROGRAM.LIF
  74. @file     *.*         /* Files Contained in Library */
  75. @EndLib
  76. @BeginLib DATA.LIF
  77. @file     *.*
  78. @EndLib
  79. @EndDisk
  80.  
  81. @SetConfig
  82.         @ASKOverwrite
  83.     @Buffers = 20
  84.         @Files = 20
  85. @EndConfig
  86.  
  87.  
  88.  
  89. @Finish
  90.     @Cls
  91.     @ChDrive @OutDrive        /* change to the output drive */
  92.     @ChDir "@Subdir"        /* change to the output subdirectory */
  93.  
  94.         Installation Complete!
  95.  
  96.         To Run The @Name program, Type BM.
  97.  
  98.         Note:  If CONFIG.SYS has been created or modified,
  99.                you must reboot your system.
  100.  
  101.        @pause
  102. @EndFinish
  103.  
  104. /* end-of-file */
  105.