home *** CD-ROM | disk | FTP | other *** search
/ PC Format 35 / pcformat_august1994_issue35.img / ISHAR3.ZIP / INSTA.BAT < prev    next >
DOS Batch File  |  1994-06-20  |  770b  |  48 lines

  1. echo off
  2. IF %1&==& GOTO Erreur
  3. IF %2&==& GOTO Erreur
  4. IF %0==INSTA GOTO :lecture
  5. Cls
  6. echo  
  7. echo    To install this game on your hard disk, you must
  8. echo    have at least 2 Mbytes of free disk space.
  9. echo 
  10. pause
  11.  
  12. md %2\I3DEMO
  13. copy %0.BAT %2\I3DEMO\INSTA.BAT
  14. %2
  15. cd %2\I3DEMO
  16. INSTA %1 %2 
  17. goto :fin
  18.  
  19.  
  20. :lecture
  21. xcopy %1\*.*
  22. if errorlevel 2 goto :erreur2
  23.  
  24. :reussi
  25. echo 
  26. echo     Installation finished.
  27. echo     To play, choose START.EXE from the I3DEMO sub-directory.
  28. echo 
  29. pause
  30. Goto Fin
  31.  
  32.  
  33. :erreur2
  34. echo 
  35. echo    ***** Procedure interrupted. *****
  36. echo    ***** Installation failed.   *****
  37. echo 
  38. pause
  39. goto :fin
  40.  
  41.  
  42. :Erreur
  43. echo 
  44. echo       INSTALL Source_Drive Destination_Drive
  45. echo       Ex: INSTALL A: C:
  46. echo 
  47. :Fin
  48.