home *** CD-ROM | disk | FTP | other *** search
- echo off
- rem *** DRAFT CHOICE 1.5 Installation Procedure ***
- if not %1a==a goto num
- cls
- echo * DRAFT CHOICE Installation ERROR - No Disk Specified *
- echo -------------------------------------------------------------------
- echo The SETUP command must be followed by a drive letter, and if
- echo necessary by a directory name. For example, to install the program
- echo on a formatted floppy disk, place the original disk in Drive A, the
- echo blank disk in drive B, make sure drive A is the default drive
- echo and use the command:
- echo SETUP b:
- echo -------------------------------------------------------------------
- echo To install the program on drive C in a directory named DC15, place
- echo the original disk in drive A, make sure drive A is the default drive
- echo and use the command:
- echo SETUP C:\DC15
- echo (No trailing backslash)
- echo --------------------------------------------------------------------
- echo Decide which installation you want to use and try again.
- echo --------------------------------------------------------------------
- goto finals
- :num
- if exist DRAFTC.EXE goto insprog1
- cls
- echo * DRAFT CHOICE Installation Error - Program files not Found *
- echo ------------------------------------------------------------------
- echo The DRAFT CHOICE Files are not on the current logged drive.
- ECHO Place the diskette with the original DRAFT CHOICE files in the
- echo default drive re-start the setup procedure
- echo -------------------------------------------------------------------
- :insprog1
- cls
- copy setup.bat %1\setup.bat >nul
- if not exist %1\setup.bat goto isnotdir
- cls
- echo DRAFT CHOICE Installation
- echo
- echo
- copy *.* %1\*.*
- echo *** Completed ***
- echo ----------------------------------------------------------------
- echo (1) Log on to the just installed Disk/Directory.
- echo Type DC15U and press ENTER to extract the following files:
- echo
- echo DRAFTC.HLP - Help File
- echo HTREE.EXE - Help file Loader
- echo ROMAN.FNT - Roman Font File
- echo
- echo (2) Log on to the just installed Disk/Directory.
- echo Type DC-MAN and press ENTER to extract On-Disk Manual File.
- echo ----------------------------------------------------------------
- goto finals
- :isnotdir
- cls
- echo ** DRAFT CHOICE Installation **
- echo ----------------------------------------------------------------
- echo The specified sub-directory %1 DOES NOT exist.
- echo Please create it or use a different sub-directory.
- echo (Remember! No Trailing Backslash)
- echo ----------------------------------------------------------------
- goto finals
- :finals
-
-