home *** CD-ROM | disk | FTP | other *** search
/ Jason Aller Floppy Collection / 414.img / MYSTINC1.ZIP / INSTALL.BAT < prev    next >
DOS Batch File  |  1990-12-20  |  1KB  |  62 lines

  1. echo off
  2. cls
  3. if "%1" == "" goto NoGood
  4. if %1 == c: goto Good
  5. if %1 == C: goto Good
  6. if %1 == d: goto Good
  7. if %1 == D: goto Good
  8. if %1 == e: goto Good
  9. if %1 == E: goto Good
  10. if %1 == f: goto Good
  11. if %1 == F: goto Good
  12. if %1 == g: goto Good
  13. if %1 == G: goto Good
  14. if %1 == h: goto Good
  15. if %1 == H: goto Good
  16. if %1 == i: goto Good
  17. if %1 == I: goto Good
  18. if %1 == j: goto Good
  19. if %1 == J: goto Good
  20. if %1 == k: goto Good
  21. if %1 == K: goto Good
  22. if %1 == l: goto Good
  23. if %1 == L: goto Good
  24. if %1 == m: goto Good
  25. if %1 == M: goto Good
  26. if %1 == n: goto Good
  27. if %1 == N: goto Good
  28. if %1 == o: goto Good
  29. if %1 == O: goto Good
  30. if %1 == p: goto Good
  31. if %1 == P: goto Good
  32.  
  33. echo "%1" is an invalid drive name.
  34. goto End
  35.  
  36. :NoGood
  37. echo Please specify onto which drive
  38. echo you wish to install Mystical.
  39. goto End
  40.  
  41. :Good
  42. echo            *****************************************
  43. echo            *        MYSTICAL        *
  44. echo            *    hard disk %1 installation     *
  45. echo            *    in directory %1\mystical    *
  46. echo            *    Press Ctrl-C to cancel        *
  47. echo            *****************************************
  48. echo .
  49. pause
  50. if not exist %1\mystical\*.* goto ToutBon
  51. echo        Error : The directory %1\MYSTICAL already exists.
  52. goto    End
  53. :ToutBon
  54. md %1\mystical
  55. copy inst2.mys %1\Mystical\inst2.bat > NUL
  56. if not exist %1\Mystical\inst2.bat     goto Error
  57. %1\mystical\inst2 %1
  58. goto End
  59. :Error
  60. echo        Error : Your hard disk is full !!!
  61. :End
  62.