home *** CD-ROM | disk | FTP | other *** search
/ The Great Feast of Heaven 103 / OLD.iso / is / install.bat < prev    next >
Encoding:
DOS Batch File  |  1995-01-03  |  720 b   |  37 lines

  1. @ECHO OFF
  2. IF "%1"=="" GOTO ERR
  3. IF "%2"=="" GOTO ERR
  4. ECHO    Thank you to purchase "INTERNATIONAL SOCCER"
  5. ECHO    The program will install into your drive %2
  6. echo    Please insert the disk into your drive %1
  7. pause
  8. %2
  9. cd\
  10. md is
  11. cd\is
  12. goto loop
  13.  
  14. :loop
  15. if files "is.zip" does not exist goto disk
  16. goto error
  17.  
  18. :disk
  19. xcopy %1\*.*
  20. pkunzip -d is.zip
  21. echo    Installation completed!
  22. echo    please type "IS" to play
  23. goto end
  24. :err
  25. echo    ERROR!
  26. echo    please type "install <source drive> <destination drive>
  27. echo    e.g. install a: c:
  28. goto end
  29. :error
  30. echo    The disk is wrong or the files was missed!
  31. echo    please check it and put the correct disk into your drive %1
  32. pause
  33. goto loop
  34. :end
  35.  
  36.  
  37.