home *** CD-ROM | disk | FTP | other *** search
/ BUG 1 / BUGCD1996_0708.ISO / pc / zabava / squirt / install.bat < prev    next >
DOS Batch File  |  1996-02-08  |  2KB  |  93 lines

  1. @echo off
  2. cls
  3. if "%1"=="" goto format
  4. if not exist squirtsw.exe goto nofile
  5. echo.
  6. echo                   SQUIRT v1.0 shareware version 
  7. echo.
  8. echo                           Installation      
  9. echo.
  10. echo.
  11. echo.
  12. echo   SQUIRT will be installed to your %1 drive in
  13. echo   the \SQUIRT directory.
  14. echo.
  15. echo   Note: You need approximately 6 Mb's of hard disk space to
  16. echo   allow SQUIRT to be installed and run successfully.
  17. echo.
  18. echo   Do you want to proceed with the installation?
  19. echo.
  20. echo      Y = Yes, please install SQUIRT.
  21. echo      N = No, I don't want to install SQUIRT at this time.
  22. echo.
  23. choice /c:YN
  24. if errorlevel 2 goto installnot
  25. if errorlevel 1 goto installit
  26.  
  27. :installit
  28. deltree %1\squirt
  29. md %1\squirt
  30. copy squirtsw.exe %1\squirt
  31. %1
  32. cd\squirt
  33. if not exist %1\squirt\squirtsw.exe goto spaceout
  34. squirtsw
  35. del squirtsw.exe
  36. cls
  37.  
  38. echo.
  39. echo Installation complete.  
  40. echo.
  41. echo Don't forget to register.
  42. echo.
  43. echo Type SQUIRT to start the game.
  44. echo.
  45. echo Have fun!!
  46. echo.
  47. goto end
  48.  
  49. :installnot
  50. cls
  51. echo.
  52. echo Installation cancelled.
  53. echo.
  54. goto end
  55.  
  56. :format
  57. echo.
  58. echo   You must use the following format to install SQUIRT v1.0:
  59. echo.
  60. echo      INSTALL [drive to install to]
  61. echo.
  62. echo   For instance, if your wish to install SQUIRT v1.0 to your C: drive,
  63. echo   you would type the following:
  64. echo.
  65. echo      INSTALL C:
  66. echo.
  67. echo.
  68. goto end
  69.  
  70. :nofile
  71. echo.
  72. echo   Install could not find the SQUIRT v1.0 file.
  73. echo   Please check your drive letters and run install again.
  74. echo.
  75. echo.
  76. goto end
  77.  
  78. :spaceout
  79. echo.
  80. echo   You are out of disk space.  You need about 6 MB's of hard drive
  81. echo   space on your %1 drive to install SQUIRT v1.0.  Please clear enough
  82. echo   space or install to another drive with enough free disk space.  
  83. echo   The SQUIRT directory will now be deleted.
  84. echo.
  85. echo.
  86. %1
  87. cd\
  88. deltree squirt
  89. goto end
  90.  
  91. :end
  92. @echo on
  93.