home *** CD-ROM | disk | FTP | other *** search
/ The Devil's Doorknob BBS Capture (1996-2003) / devilsdoorknobbbscapture1996-2003.iso / Dloads / 100UTILI / VGAUTIL.ZIP / CPYLTS.BAT < prev    next >
DOS Batch File  |  1980-05-28  |  4KB  |  84 lines

  1. ECHO OFF
  2. REM LOTUS DRIVER COPY FACILITY
  3. REM %1 specifies 1-2-3 or Symphony
  4. REM %2 specifies H or F for hard or floppy disk install
  5. REM %3 specifies the drive and directory for a hard disk install
  6. IF *%1 == * GOTO END
  7. CLS
  8. ECHO  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  9. ECHO  *   %1 drivers for the Paradise VGA Card 
  10. ECHO  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  11. ECHO  *  This procedure will copy new Lotus %1 drivers to 
  12. IF *%2 == *H ECHO  *  %1 directory on your hard disk at %3. 
  13. IF *%2 == *F ECHO  *  temporary work disk for use by your Lotus INSTALL program. 
  14. ECHO  *  These drivers support the use of the Paradise VGA in 800x600 or
  15. ECHO  *  640x480 graphics and 132 column text.
  16. ECHO  *
  17. ECHO  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  18. IF *%2 == *F ECHO  *  If you do not have a blank work disk ready, or
  19. ECHO  *  If this is not what you intend hold down [CTRL] while
  20. ECHO  *  typing the letter C, then press the letter Y.
  21. ECHO  *  Otherwise...
  22. PAUSE
  23. IF *%2 == *H GOTO HCOPY
  24. CLS
  25. ECHO  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  26. ECHO  *  If you have two floppy drives
  27. ECHO  *    Insert your blank WORK DISK in your B: drive.
  28. ECHO  *
  29. ECHO  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  30. ECHO  *
  31. ECHO  *  If you have only ONE floppy drive
  32. ECHO  *    When prompted to insert the disk for the B: drive
  33. ECHO  *    insert your blank WORK DISK in your floppy drive.
  34. ECHO  *
  35. ECHO  *    When prompted to insert the disk for the A: drive
  36. ECHO  *    insert the PARADISE VGA UTILITY disk in your drive.
  37. ECHO  *
  38. ECHO  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  39. PAUSE
  40. :FCOPY
  41. COPY SP*.DRV B:\
  42. GOTO DONE
  43. :HCOPY
  44. CLS
  45. IF NOT EXIST %3\INSTALL.EXE GOTO ERROR1
  46. COPY SP*.DRV %3
  47. :DONE
  48. CLS
  49. ECHO * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  50. ECHO *
  51. ECHO *      Paradise VGA drivers for %1 copied    
  52. ECHO *
  53. ECHO * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  54. ECHO *  You will now need to use INSTALL to modify your %1 driver 
  55. ECHO *  set to support the Paradise VGA extended capabilities.
  56. ECHO * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  57. IF *%2 == *H IF EXIST %3\SINGLE.LBR GOTO ERROR2
  58. GOTO END
  59. :ERROR1
  60. CLS
  61. ECHO  
  62. ECHO  The pathname indicated does not contain the Lotus INSTALL program.
  63. ECHO  You must include the pathname of the directory that contains your 
  64. ECHO  %1 program and utilities when you run this batch file.
  65. IF *%1 == *Symphony ECHO         SYMHD [drive:][path]
  66. IF *%1 == *1-2-3 ECHO         123HD [drive:][path]
  67. IF *%1 == *Symphony ECHO  Note: You must be using Lotus Symphony Release 1.1, 1.2 or 2.0.
  68. IF *%1 == *1-2-3 ECHO  Note: You must be using Lotus 1-2-3 Release 2.0 or Release 2.01
  69. ECHO        to use these drivers.
  70. GOTO END
  71. :ERROR2
  72. ECHO  
  73. ECHO * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  74. IF *%1 == *Symphony ECHO * Attention: If you are using Symphony Release 1.1 your Symphony 
  75. IF *%1 == *1-2-3 ECHO * Attention: If you are using 1-2-3 Release 2.0 your 1-2-3 
  76. ECHO * directory already contains a file called SINGLE.LBR. You must delete 
  77. ECHO * this file before you run INSTALL, or you will not be able to add the new
  78. ECHO * Paradise drivers.
  79. ECHO *
  80. IF *%1 == *Symphony ECHO * If you are using Symphony Rel 1.2 or 2.0 you do not need to delete this file.
  81. IF *%1 == *1-2-3 ECHO * If you are using 1-2-3 Release 2.01 you do not need to delete this file.
  82. ECHO * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  83. :END
  84.