home *** CD-ROM | disk | FTP | other *** search
- echo off
- cls
- if "%2" == "B" goto BACK
- echo *****************************************************
- echo * Tennis-Cup Harddisk-Installation *
- echo *****************************************************
- if "%1" == "" goto NOP
- md %1\tennis
- copy hard.bat %1\tennis >nul
- %1\tennis\hard %1 B
- goto End
- :BACK
- cls
- echo Copying files from Disc A(1) to drive "%1"
- copy *.* %1\tennis >nul
- :TWO
- cls
- echo Please insert 'Tennis-Cup B(2)' disc
- pause
- if not exist pc.msk goto TWO
- cls
- echo Copying files from Disc B(2) to drive "%1"
- copy *.* %1\tennis >nul
- :THR
- cls
- echo Please insert 'Tennis-Cup C(3)' disc
- pause
- if not exist pc.ega goto THR
- cls
- echo Copying files from Disc C(3) to drive "%1"
- copy *.* %1\tennis >nul
- :FOR
- cls
- echo Please insert 'Tennis-Cup D(4)' disc
- pause
- if not exist logo.ega goto FOR
- cls
- echo Copying files from Disc D(4) to drive "%1"
- copy *.* %1\tennis >nul
- %1
- cd %1\tennis
- goto End
- :NOP
- echo .
- echo Please enter the drive where the files
- echo should be placed (C: or D:)
- echo when you run HARD e.g. HARD C:
- echo .
- echo A directory "TENNIS" will be created on it
- echo containing the program files.
- :End
-
-