home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 16 / 16.iso / t / t192 / 1.img / LPINSTAL.BAT < prev   
Encoding:
DOS Batch File  |  1990-04-20  |  1.7 KB  |  70 lines

  1. @echo off
  2. if %3!==! goto help
  3. if %3==-IC goto start
  4. if %3==-IV goto start
  5. if %3==-IE goto start
  6. if %3==-IA goto start
  7. if %3==-IH goto start
  8. if %3==-IM goto start
  9. if %3==-IO goto start
  10. :help
  11. cls
  12. echo  
  13. echo  
  14. echo Type LPINSTAL followed by the source disk, the destination disk and
  15. echo a code for your display adapter type.  For expample:
  16. echo  
  17. echo LPINSTAL A C -IV
  18. echo  
  19. echo This will install from drive A to drive C. It will install for a
  20. echo VGA monitor.
  21. echo  
  22. echo The display adapter type codes are as follows:
  23. echo  
  24. echo -IC = CGA
  25. echo -IV = VGA
  26. echo -IE = EGA
  27. echo -IA = AT&T - or Gas Plasma
  28. echo -IH = Hercules
  29. echo -IM = MCGA
  30. echo -IO = EGA Monochrome
  31. echo  
  32. echo The display adapter type codes must be entered just as shown; a hyphen
  33. echo followed by two capital letters.
  34. echo  
  35. echo  
  36. goto exit
  37. :start
  38. %2:
  39. md %2:\averydm
  40. md %2:\averydm\graphic
  41. md %2:\averydm\jobs
  42. md %2:\averydm\labels
  43. md %2:\averydm\lists
  44. cd %2:\averydm
  45. copy %1:arcce.exe %2:\averydm
  46. arcce -o  %1:disk1.arc %2:\averydm\ *.cfg
  47. arcce -o  %1:disk1.arc %2:\averydm\ *.ipc
  48. arcce -o  %1:disk1.arc %2:\averydm\ *.exe
  49. arcce -o  %1:disk1.arc %2:\averydm\ *.dat
  50. arcce -o  %1:disk1.arc %2:\averydm\labels *.avl
  51. arcce -o  %1:disk1.arc %2:\averydm\labels *.frm
  52. arcce -o  %1:disk1.arc %2:\averydm\labels *.qpl
  53. if exist %1:disk2.arc goto continue
  54. :loop
  55. echo  
  56. echo **** Insert Disk 2 ****
  57. echo  
  58. pause
  59. if not exist %1:disk2.arc goto loop
  60. :continue
  61. arcce -o  %1:disk2.arc %2:\averydm\graphic *.bcx
  62. arcce -o  %1:disk2.arc %2:\averydm\graphic *.pcx
  63. arcce -o  %1:disk2.arc %2:\averydm\ *.hlp
  64. arcce -o  %1:disk2.arc %2:\averydm\ *.bgi
  65. arcce -o  %1:disk2.arc %2:\averydm\ *.ff1
  66. arcce -o  %1:disk2.arc %2:\averydm\ *.fnt
  67. del arcce.exe >nul
  68. lpdm %3
  69. :exit
  70.