home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / v / voleybal.zip / INSTALL2.BAT < prev    next >
DOS Batch File  |  1988-12-13  |  1KB  |  41 lines

  1. rem --- If 3.5" disk, all files will already have been copied to the
  2. rem     hard disk, so no need to copy any more here.
  3. if exist \vball\regtent.pak goto installDone
  4.  
  5. rem --- make sure drive contains the utility disk.
  6. :3
  7. if exist regtent.pak goto 4
  8. cls
  9. echo Insert KINGS OF THE BEACH Game disk 2 into drive.
  10. pause
  11. goto 3
  12. :4
  13.  
  14. rem --- copy game disk 2 files to the hard disk.
  15. echo 
  16. echo Copying game files...
  17. copy *.* %1\vball
  18. if not exist %1\vball\regtent.pak goto installationError
  19.  
  20. rem --- installation was successful!
  21. :installDone
  22. cd %1\vball
  23. echo 
  24. echo Kings of the Beach is now installed on your hard disk.  
  25. echo To run it, type "VBALL".
  26. %1
  27. goto done
  28.  
  29. rem --- general installation error.
  30. :installationError
  31. echo 
  32. echo Installation Error: Perhaps there isn't enough space on your hard disk.
  33. goto errorDone
  34.  
  35. rem --- goto here after an error is detected, to print a message and exit.
  36. :errorDone
  37. echo KINGS OF THE BEACH was not installed correctly.
  38.  
  39. :done
  40.  
  41.