home *** CD-ROM | disk | FTP | other *** search
/ IBM Presents OS/2 Software Hits 1995 / OS-2_SW_HITS_2ND_EDITION_1995.ISO / i17 / us7050b1.dsk / IP07050.BAT < prev    next >
DOS Batch File  |  1994-10-03  |  1KB  |  26 lines

  1. @echo off
  2. if "%1" == "" goto help
  3. if exist %1\enmgr.exe goto continue
  4. @echo Path specified does not contain LAN Distance files!
  5. goto help
  6. :continue
  7. @echo Replacing LAN Distance files on %1
  8. expand a:\fix\ldw\*.* %1
  9. if ERRORLEVEL 1 goto help
  10. goto end
  11. :help
  12. @echo -----------------------------------------------------------------------
  13. @echo -                                                                     - 
  14. @echo - 1. Install the LAN Distance for Windows fixes using the MS Windows  -
  15. @echo -    "RUN" command or using a command prompt in the Windows directory.-
  16. @echo -                                                                     -
  17. @echo - 2. The location, "d:\path", of the LAN Distance files to be         -
  18. @echo -     replaced, must be specified.                                    -
  19. @echo -                                                                     -
  20. @echo -    example: To update the LAN Distance files on drive D: in         -
  21. @echo -      directory \WAL, type:                                          -
  22. @echo -           "IP07050 D:\WAL"                                          -
  23. @echo -                                                                     -
  24. @echo -----------------------------------------------------------------------
  25. :end
  26.