home *** CD-ROM | disk | FTP | other *** search
/ Piper's Pit BBS/FTP: ibm 0010 - 0019 / ibm0010-0019 / ibm0010.tar / ibm0010 / DVISION.ZIP / DISK2.ZIP / INSTALL.BAT < prev    next >
Encoding:
DOS Batch File  |  1989-10-20  |  2.7 KB  |  77 lines

  1. @echo off
  2. :Start
  3. if not exist DVCOPY.EXE goto WrongDisk
  4. echo Loading . . .
  5. dvcopy.exe
  6. if errorlevel 2  if not errorlevel 3 goto EndOnError
  7. if errorlevel 3 if not errorlevel 4 goto EndOnEscape
  8. CLS
  9. echo                        Disk Vision Installation Program
  10. echo                        ────────────────────────────────
  11. echo  
  12. echo INSTALL is configuring HardDisk Manager 4 and File Archive Manager 4
  13. echo for use on your system . . .
  14. CONFIG
  15. DVSET
  16. echo  
  17. echo Done! If an error message was displayed press ESCAPE to quit the
  18. echo INSTALL program and return to DOS.  Correct the problem, then run
  19. echo INSTALL again.
  20. echo  
  21. echo Press any key to continue or ESCAPE to abort . . .
  22. WAIT 
  23. if errorlevel 0 if not errorlevel 1 goto Continue
  24. if errorlevel 1 if not errorlevel 2 goto EndOnEscape
  25. :Continue
  26. CLS
  27. echo                        Disk Vision Installation Program
  28. echo                        ────────────────────────────────
  29. echo  
  30. echo INSTALL will now run the Printer Installation program (LABEL.COM).  This
  31. echo program will configure Diskette Manager 4, by presenting a list of printers
  32. echo for you to choose from.  If you do not see your printer specifically listed
  33. echo select the one that most closely emulates your printer.  Refer to your
  34. echo printer's manual for information on what models it may emulate.
  35. echo  
  36. echo Press a key to see the list of printers or ESCAPE to abort . . .
  37. WAIT 
  38. if errorlevel 0 if not errorlevel 1 goto RunLabel
  39. if errorlevel 1 if not errorlevel 2 goto EndOnEscape
  40. :RunLabel
  41. CLS
  42. LABEL
  43. echo  
  44. echo If an error message was displayed press ESCAPE to quit the INSTALL
  45. echo program and return to DOS.  Correct the problem, then run INSTALL
  46. echo again.
  47. echo  
  48. echo Press any key to continue or ESCAPE to abort . . .
  49. WAIT 
  50. if errorlevel 0 if not errorlevel 1 goto ChangeAuto
  51. if errorlevel 1 if not errorlevel 2 goto EndOnEscape
  52. :ChangeAuto
  53. CLS
  54. echo Installation complete!
  55. echo  
  56. echo Remove the DISK VISION program disk from the floppy drive and
  57. echo store it in a safe place.  To start using DISK VISION, type HDM.
  58. goto End
  59. :WrongDisk
  60. cls
  61. echo The INSTALL program cannot find the necessary files on the disk in the
  62. echo default drive.  Insert the DISK VISION program disk (#1) in the floppy
  63. echo drive, log onto that drive, and then type INSTALL.
  64. goto End
  65. goto Start
  66. :EndOnError
  67. echo  
  68. echo Installation aborted on error.  DISK VISION may not work properly.
  69. echo Run INSTALL again after correcting the error
  70. goto End
  71. :EndOnEscape
  72. echo  
  73. echo User requested abort. DISK VISION not installed.                            
  74. echo Run INSTALL again before running DISK VISION.                               
  75. :End
  76. echo  
  77.