home *** CD-ROM | disk | FTP | other *** search
- ;This is designed to help you get your installation organized
-
- ;BANNER and HELLO processing will replace a shareware screen after
- ;registering Install-Pro for $27.50 - see order.doc.
-
- BANNER " Insert your opening screen title line here "
-
- HELLO " Up to 13 lines of text like this can be defined here. "
-
- ;Up to 13 user prompt lines can be entered here. These lines
- ;define the data entry form that the user sees, and creates space for
- ;the rest of the program to function.
-
- USER label_1 "Prompt 1" C:\DEFAULT1
- USER label_2 "Prompt 2" C:\DEFAULT2
-
- ;Any number of subdirectories can be built child to the above directories
- ;that the user enters
-
- SUBDIR label_1 child1
- SUBDIR label_2 child2\child3
-
- ;Any number of transfer files can go here
-
- FILE label_1 file.001
- FILE label_2 file.002
- FILE label_3 file.003
-
-
- ;Split file transfers look like this:
-
- FILE label_1 file.ex1t
-
- ;file.ex1 is the source file, and file.ext is the destination
- ;file (Note the extra character at the end of the filename.)
- ;On a subsequent disk this file would be appended to file.ext
-
- FILE label_1 file.ex2t
-
- ;file.ex2 is the source file, and file.ext is what it gets
- ;appended to.
-
-
- ;Transfer to child subdirectories too
-
- FILE label_1 child1\file.004
- FILE label_2 child2\child3\file.005
-
- GOODBYE " Build a thank-you screen, a good-bye screen, or whatever"
- GOODBYE " kind of screen you want - up to 13 lines. Blank lines can"
- GOODBYE ""
- GOODBYE " be generated with empty quotes."
-
- ;This run command executes myprog1 from the directory that the
- ;user specified for label_1 above
-
- RUN !label_1\myprog1
-
- ;If you supply a .exe or .com extension, Install-Pro will load
- ;and execute your program directly - see the documentation for RUN
- ;for the benefits of this.
-
- RUN !label_2\myprog3.exe
-
- ;This run command executes myprog2 from the installation
- ;diskette's root directory
-
- RUN !home\myprog2
-
- ;You can either have DISK to prompt for a disk swap or END to
- ;finish with this disk
- END
-
- ;Unregistered versions need not worry about AUTHORIZATION
- AUTHORIZATION 00000
-
-