home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / PCBOARD / TAPEFLAG.ZIP / FLAG30.ZIP / INSTALL.BAT < prev    next >
DOS Batch File  |  1993-12-18  |  1KB  |  54 lines

  1. @echo off
  2. if *%1 == * goto explain
  3. if *%2 == * goto explain
  4.  
  5. if not exist %1 goto explain
  6. if not exist %2\con goto explain
  7.  
  8. :install
  9. copy FLAG*.* %2
  10.  
  11. mkpcbtxt %1 /i:549 "!%2\FLAG.PPE"
  12.  
  13. if *%3 == * goto done
  14. if not exist %3\con goto done
  15.  
  16. copy prefiler %3
  17.  
  18. :done
  19. echo  
  20. echo FLAG.PPE has been installed
  21. echo  
  22. goto end
  23.  
  24. :explain
  25. echo  
  26. echo Installation of FLAG.PPE
  27. echo ------------------------
  28. echo Usage:   INSTALL pcbtext ppldir cmdfiles
  29. echo  
  30. echo Where "pcbtext" is the PCBTEXT file to update.
  31. echo  
  32. echo And "ppldir" is where you want to store the PPS/PPE file(s).
  33. echo  
  34. echo The "cmdfiles" directory is optional.  If included, PREFILER will be
  35. echo copied into that directory.
  36. echo  
  37. echo Example usage:
  38. echo  
  39. echo     INSTALL C:\PCB\GEN\PCBTEXT C:\PCB\FLAG C:\PCB\CMDFILES
  40. echo  
  41. pause
  42. echo  
  43. echo NOTE:  If you previously used FLAG v2.x then you can now UN-install the
  44. echo        FLAG2.PPE file from your PCBTEXT file.  This is done by using
  45. echo        MKPCBTXT and pressing F3 to get to records 223 and 585.  Once in
  46. echo        the record, press F4 to restore the default text.
  47. echo  
  48. echo NOTE TO SYSOPS USING RIPSCRIP:  To fully support RIPscrip you must install
  49. echo        the PREFILER file into the CMDFILES directory.  See the history
  50. echo        notes of FLAG.PPE v3.0 (item 4b) in FLAG.HIS for details.
  51. echo  
  52.  
  53. :end
  54.