home *** CD-ROM | disk | FTP | other *** search
/ CD-ROM User 1995 September / cdrom-user-14-1995-09.iso / reddrag / dotmania / install.bat < prev    next >
DOS Batch File  |  1995-01-21  |  3KB  |  86 lines

  1. echo off
  2. cls
  3. if not exist dotmania.exe goto error
  4. if "%1"=="" goto auto
  5. goto manual
  6.  
  7. :ERROR
  8. cls
  9. echo ----------------------------------------------------------------
  10. echo -   ERROR
  11. echo -
  12. echo -     You must run INSTALL from the DOS prompt of the drive
  13. echo -     that contains the Dot-Mania disk,  (e.g. A: or B:)
  14. echo -
  15. echo -   Please correct and try again.
  16. echo ----------------------------------------------------------------
  17. goto exit
  18.  
  19.  
  20. :AUTO
  21. echo ┌───────────────────────────────────────────────────────────────────────┐
  22. echo │                                                                       │
  23. echo │  Dot-Mania V1.14                                                      │
  24. echo │                                                                       │
  25. echo │  To install Dot-Mania on C:\DOTMANIA                                  │
  26. echo │     press any key now.                                                │
  27. echo │                                                                       │
  28. echo │  To install on a drive other than C:                                  │
  29. echo │     1. Press [CTRL] [C] and answer Y to "Terminate batch file?"       │
  30. echo │     2. Type INSTALL X then press [ENTER]                              │
  31. echo │           where:   X is the letter of the desired drive               │
  32. echo │                    DO NOT add a colon (:) to the drive letter.        │
  33. echo │                    A \DOTMANIA directory is created automatically.    │
  34. echo │                                                                       │
  35. echo │           example: INSTALL E - installs onto E:\DOTMANIA              │
  36. echo │                                                                       │
  37. echo └───────────────────────────────────────────────────────────────────────┘
  38. echo To install on C:\DOTMANIA,
  39. pause
  40. cls
  41. echo Now installing Dot-Mania on C:\DOTMANIA
  42. md c:\dotmania
  43. dotmania C:\dotmania\ -d -o
  44. if errorlevel 1 goto space
  45. cls
  46. c:
  47. cd \dotmania
  48. goto end
  49.  
  50. :MANUAL
  51. goto ok
  52.  
  53. :SPACE
  54. cls
  55. echo --------------------------------------------------------------
  56. echo -  ERROR
  57. echo -
  58. echo -    There is insufficient space on the specified drive (%1:)
  59. echo -
  60. echo -    -or-  You have specified an invalid drive parameter.
  61. echo -
  62. echo -        If you see two colons here (%1:), please
  63. echo -        type INSTALL X without adding a colon.
  64. echo -
  65. echo -        X is the letter of the desired drive
  66. echo -
  67. echo -  Please correct and try again.
  68. echo --------------------------------------------------------------
  69. goto exit
  70.  
  71. :OK
  72. echo Now installing Dot-Mania on %1:\DOTMANIA
  73. md %1:\dotmania
  74. dotmania %1:\dotmania\ -d -o
  75. if errorlevel 1 goto space
  76. cls
  77. %1:
  78. cd \dotmania
  79.  
  80. :END
  81. echo Installation successful!
  82. echo.
  83. echo Type DOT2DOT and press [ENTER] to run Dot-Mania.
  84.  
  85. :EXIT
  86.