home *** CD-ROM | disk | FTP | other *** search
- echo off
- if XX%1==XX goto usage
- if XX%2==XX goto usage
- if XX%3==XX goto usage
-
- %1:
- if ERRORLEVEL 1 goto usage
- if NOT EXIST %2\*.* md %2
- cd %2
- if ERRORLEVEL 1 goto usage
- if NOT EXIST msc\*.* md msc
- if NOT ERRORLEVEL 1 goto d2
- echo Could not create MSC subdirectory
- goto usage
- :d2
- if NOT EXIST lc\*.* md lc
- if NOT ERRORLEVEL 1 goto d3
- echo Could not create LC subdirectory
- goto usage
- :d3
- if NOT EXIST tc\*.* md tc
- if NOT ERRORLEVEL 1 goto d4
- echo Could not create TC subdirectory
- goto usage
- :d4
- if NOT EXIST netbios\*.* md netbios
- if NOT ERRORLEVEL 1 goto d5
- echo Could not create NETBIOS subdirectory
- goto usage
- :d5
- if NOT EXIST novell\*.* md novell
- if NOT ERRORLEVEL 1 goto d6
- echo Could not create NOVELL subdirectory
- goto usage
- :d6
- if NOT EXIST unix\*.* md unix
- if NOT ERRORLEVEL 1 goto d7
- echo Could not create UNIX subdirectory
- goto usage
- :d7
- if NOT EXIST xenix\*.* md xenix
- if NOT ERRORLEVEL 1 goto d8
- echo Could not create XENIX subdirectory
- goto usage
- :d8
- if NOT EXIST vax\*.* md vax
- if NOT ERRORLEVEL 1 goto d9
- echo Could not create VAX subdirectory
- goto usage
- :d9
- if NOT EXIST az\*.* md az
- if NOT ERRORLEVEL 1 goto d10
- echo Could not create AZ subdirectory
- goto usage
- :d10
- if NOT EXIST watcom\*.* md watcom
- if NOT ERRORLEVEL 1 goto d13
- echo Could not create WATCOM subdirectory
- goto usage
- :d13
- if NOT EXIST os2\*.* md os2
- if NOT ERRORLEVEL 1 goto d14
- echo Could not create OS2 subdirectory
- goto usage
- :d14
- if NOT EXIST os2lan\*.* md os2lan
- if NOT ERRORLEVEL 1 goto d15
- echo Could not create OS2LAN subdirectory
- goto usage
- :d15
- goto copy
-
- :usage
- echo DOS program to install c-tree(R) File Handler source on hard disk.
- echo *****:
- echo usage: CTREE {HARD DRIVE} {c-tree DIRECTORY} {FLOPPY DRIVE}
- echo *****:
- echo where {HARD DRIVE} = C or D or E or ... (destination)
- echo where {c-tree DIRECTORY} = Hard disk directory for c-tree
- echo and where {FLOPPY DRIVE} = A or B or ... (source)
- echo e.g., CTREE C ctree a
- echo CTREE D \ct b
- echo *****
- echo The source is then installed as follows: CTREE switches to HARD DRIVE, and
- echo creates (if necessary) the c-tree directory (beginning at the DRIVE's
- echo current directory). Additionally, sub-directories are created for each of
- echo the system dependent modules (e.g., NOVELL server, NETBIOS server, UNIX,
- echo etc.). Then the code is copied from the floppies mounted on FLOPPY DRIVE
- echo to these c-tree directories.
-
- goto done
-
- :copy
- copy %3:\$$$$2 ct2.bat
- ct2 %1 %3
- :done
-