home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer 3.4 / 1997-07_Disc_3.4.iso / timedemo / install.bat < prev    next >
DOS Batch File  |  1997-03-25  |  924b  |  54 lines

  1. @echo off
  2. if "%1"=="" goto Erreur
  3.  
  4. @cd %1\
  5.  
  6. :deb
  7. Cls
  8. echo 
  9. echo ╔══════════════════════╗
  10. echo ║  TIME WARRIORS DEMO  ║
  11. echo ╚══════════════════════╝
  12. echo 
  13. echo  (C) Copyright Silmarils 1997
  14. echo 
  15. if exist %1\TIMEDEMO\start.exe goto dinst0
  16. md %1\TIMEDEMO >nul
  17. goto iok0
  18.  
  19. :dinst0
  20. echo 
  21. echo Time Warriors already installed,
  22. choice /CYN /N "continue installation (Y/N) : "
  23.  
  24. IF ERRORLEVEL 2 GOTO fin
  25. :iok0
  26.  
  27. echo 
  28. echo please wait, installation in progress...
  29.  
  30. copy start.exe %1\timedemo >nul
  31. copy *.io %1\timedemo >nul
  32. copy *.to %1\timedemo >nul
  33. copy *.pcx %1\timedemo >nul
  34. copy *.flc %1\timedemo >nul
  35.  
  36. @%1
  37. @cd %1\timedemo
  38. goto ok
  39.  
  40. :Erreur
  41. echo 
  42. echo *** Procedure Interrupted - Installation Failed ***
  43. echo Install Destination_Drive
  44. echo ex: INSTALL C:
  45. goto fin
  46.  
  47. :ok
  48. echo 
  49. echo *** Installation finished ***
  50. echo To play, type START from your Hard drive
  51.  
  52. :fin
  53. echo 
  54.