home *** CD-ROM | disk | FTP | other *** search
/ Hobbies & Leisure - Plus Bible Study & Games / HobbiesLeisurePlusBibleStudyAndGamesMapleMedia1995.disc1of1.iso / objectls / install.bat < prev    next >
DOS Batch File  |  1994-05-22  |  3KB  |  83 lines

  1. echo off
  2. cls
  3. if %1a == a: goto WHATDRIVE
  4. if %1b == b: goto WHATDRIVE
  5. if %1 == c: goto START
  6. if %1 == C: goto START
  7. if %1 == d: goto START
  8. if %1 == D: goto START
  9. if %1 == e: goto START
  10. if %1 == E: goto START
  11. if %1 == f: goto START
  12. if %1 == F: goto START 
  13. goto NOTDRIVE
  14. :START
  15. echo 
  16. echo   ╔════════════════════════════════════════════════════════════════════════╗
  17. echo   ║                                                                        ║
  18. echo   ║      Visual Illustrations, Electronic Computer Book, Installation      ║
  19. echo   ║                                                                        ║
  20. echo   ║    *  This will create a directory called %1\VI on your hard disk      ║
  21. echo   ║       and will install the Visual Illustrations book files in that     ║
  22. echo   ║       directory.                                                       ║
  23. echo   ║                                                                        ║
  24. echo   ║    *  To run the program, type VI and press ENTER.                     ║
  25. echo   ║                                                                        ║
  26. echo   ║    *  If you do not want Visual Illustrations installed at this        ║
  27. echo   ║       time, press CTRL + BREAK.                                        ║
  28. echo   ║                                                                        ║
  29. echo   ╚════════════════════════════════════════════════════════════════════════╝
  30. echo 
  31. pause
  32. cls
  33. if exist %1\VI\*.* goto EXISTS
  34. echo Making directory %1\VI . . .
  35. md %1\VI
  36. :CHECK
  37. if exist VI.EXE goto CONTINUE
  38. echo 
  39. echo Place the disk containing the Visual Illustrations files in the
  40. echo active drive.
  41. echo 
  42. pause
  43. goto CHECK
  44. :CONTINUE
  45. echo 
  46. echo Copying Visual Illustrations files . . .
  47. copy *.* %1\VI
  48. if not exist %1\VI\VI.EXE goto INSTALLERROR
  49. if not exist %1\VI\VI.TXT goto INSTALLERROR
  50. cd %1\VI
  51. echo 
  52. echo Visual Illustrations is installed on your hard disk.  To run it, type VI.
  53. %1
  54. echo 
  55. goto DONE
  56. :WHATDRIVE
  57. cls
  58. echo Installation Error:  To install Visual Illustrations on your hard 
  59. echo disk, you must include the drive as part of the install command.
  60. echo For example, to install Visual Illustrations on drive C, type 
  61. echo INSTALL C: and press ENTER.
  62. goto ERRORQUIT
  63. :NOTDRIVE
  64. cls
  65. echo Installation Error: The hard drive letter can be a letter from C to F,
  66. echo For example, INSTALL C: will install Visual Illustrations on drive C.
  67. echo You must include a colon after the drive letter.
  68. goto ERRORQUIT
  69. :INSTALLERROR
  70. cls
  71. echo Installation Error: Do you have enough space on your hard disk?
  72. echo Did you give the proper hard drive letter?
  73. goto ERRORQUIT
  74. :EXISTS
  75. cls
  76. echo Updating directory %1\VI . . .
  77. goto CHECK
  78. :ERRORQUIT
  79. echo 
  80. echo Visual Illustrations was not installed correctly.
  81. echo 
  82. :DONE
  83.