home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / UTILITY / FILE / IPRO121.ZIP / EXAMPLE.001 next >
Encoding:
Text File  |  1991-08-01  |  2.1 KB  |  77 lines

  1. ;This is designed to help you get your installation organized
  2.  
  3. ;BANNER and HELLO processing will replace a shareware screen after
  4. ;registering Install-Pro for $27.50 - see order.doc.
  5.  
  6. BANNER "   Insert your opening screen title line here "
  7.  
  8. HELLO  "   Up to 13 lines of text like this can be defined here.   "
  9.  
  10. ;Up to 13 user prompt lines can be entered here.  These lines
  11. ;define the data entry form that the user sees, and creates space for
  12. ;the rest of the program to function.
  13.  
  14. USER   label_1 "Prompt 1" C:\DEFAULT1
  15. USER   label_2 "Prompt 2" C:\DEFAULT2
  16.  
  17. ;Any number of subdirectories can be built child to the above directories
  18. ;that the user enters
  19.  
  20. SUBDIR label_1 child1
  21. SUBDIR label_2 child2\child3
  22.  
  23. ;Any number of transfer files can go here
  24.  
  25. FILE label_1 file.001
  26. FILE label_2 file.002
  27. FILE label_3 file.003
  28.  
  29.  
  30. ;Split file transfers look like this:
  31.  
  32. FILE label_1 file.ex1t
  33.  
  34. ;file.ex1 is the source file, and file.ext is the destination
  35. ;file (Note the extra character at the end of the filename.)
  36. ;On a subsequent disk this file would be appended to file.ext
  37.  
  38. FILE label_1 file.ex2t
  39.  
  40. ;file.ex2 is the source file, and file.ext is what it gets
  41. ;appended to.
  42.  
  43.  
  44. ;Transfer to child subdirectories too
  45.  
  46. FILE label_1 child1\file.004
  47. FILE label_2 child2\child3\file.005
  48.  
  49. GOODBYE "   Build a thank-you screen, a good-bye screen, or whatever"
  50. GOODBYE "   kind of screen you want - up to 13 lines.  Blank lines can"
  51. GOODBYE ""
  52. GOODBYE "   be generated with empty quotes."
  53.  
  54. ;This run command executes myprog1 from the directory that the
  55. ;user specified for label_1 above
  56.  
  57. RUN !label_1\myprog1
  58.  
  59. ;If you supply a .exe or .com extension, Install-Pro will load
  60. ;and execute your program directly - see the documentation for RUN
  61. ;for the benefits of this.
  62.  
  63. RUN !label_2\myprog3.exe
  64.  
  65. ;This run command executes myprog2 from the installation
  66. ;diskette's root directory
  67.  
  68. RUN !home\myprog2
  69.  
  70. ;You can either have DISK to prompt for a disk swap or END to
  71. ;finish with this disk
  72. END
  73.  
  74. ;Unregistered versions need not worry about AUTHORIZATION
  75. AUTHORIZATION 00000
  76.  
  77.