home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS 1992 September / Simtel20_Sept92.cdr / msdos / sysutl / addpath.arc / ADDPATH.BAT next >
DOS Batch File  |  1987-12-06  |  412b  |  17 lines

  1. : addpath.bat by Rick Sattler 11-22-87
  2. : Portland, Oregon
  3. : This batch file will expand the DOS PATH environment
  4. : to include the added path assignment.
  5. : If no parameter is specified, then an error message is 
  6. : shown giving the correct syntax.
  7. echo off
  8. cls
  9. if !%1==! goto noparm
  10. goto addpath
  11. :addpath
  12. path=%path%;%1
  13. goto exit
  14. :noparm
  15. echo no parameter specified - addpath [d:][pathname]
  16. :exit
  17.