home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 29 Fixes_o / 29-Fixes_o.zip / 7015_B4.ZIP / SVPINST3.BAT < prev    next >
DOS Batch File  |  1993-12-03  |  777b  |  34 lines

  1. @echo off
  2. if "%1" == "" goto expl
  3. if not "%3" == "" %3:
  4.  
  5. rem install common fixes
  6. xcopy common\*.* %1:\dbdrqlib
  7.  
  8. if "%2" == "/d" goto :dosinst
  9.  
  10. rem install windows fixes
  11. xcopy wclient\*.* %1:\dbdrqlib
  12. if "%2" == "/w" goto end
  13.  
  14. :dosinst
  15. rem install dos fixes
  16. xcopy *.* %1:\dbdrqlib
  17. del %1:\dbdrqlib\svpinst3.bat
  18. goto end
  19.  
  20. :expl
  21. echo.
  22. echo " USAGE:  svpinst3 <x> /<d|w|dw>  [y] "
  23. echo.
  24. echo  Where x is the drive on which the dbdrqlib is installed.
  25. echo.
  26. echo        /d specifies installation of the DOS fixes
  27. echo        /w specifies installation of the Windows fixes
  28. echo        /dw specifies installation of both DOS and Window fixes
  29. echo.
  30. echo        y is the drive you are installing from (default is the current drive)
  31. echo.
  32. :end
  33. @echo on
  34.