home *** CD-ROM | disk | FTP | other *** search
/ Jason Aller Floppy Collection / 218.img / DRACK1PE.ZIP / INSTALL.BAT < prev    next >
DOS Batch File  |  1990-03-08  |  1KB  |  61 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 which drive to install Drakkhen.
  38. goto End
  39.  
  40. :Good
  41. echo            *****************************************
  42. echo            *        DRAKKHEN        *
  43. echo            *    hard disk %1 installation     *
  44. echo            *    in directory %1\drakkhen    *
  45. echo            *    Press Ctrl-C to cancel        *
  46. echo            *****************************************
  47. echo .
  48. pause
  49. if not exist %1\drakkhen\*.* goto ToutBon
  50. echo        Error : The directory %1\DRAKKHEN already exists.
  51. goto    End
  52. :ToutBon
  53. md %1\drakkhen
  54. copy inst.bat %1\Drakkhen > NUL
  55. if not exist %1\Drakkhen\inst.bat     goto Error
  56. %1\drakkhen\inst %1
  57. goto End
  58. :Error
  59. echo        Error : Your hard disk is full.
  60. :End
  61.