home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 33 VDrivers / 33-VDrivers.zip / s32os2.exe / INSTALL.CMD < prev    next >
OS/2 REXX Batch file  |  1994-05-09  |  633b  |  31 lines

  1. @echo off
  2. if .%1==. goto SHOWUSAGE
  3. IF .%2==. goto SHOWUSAGE
  4.  
  5. goto ONEPARAM
  6.  
  7. copy %1\Stlth32.DSC %2\OS2\INSTALL\Stlth32.DSC
  8. copy %1\svga.exe %2\os2
  9. dspinstl
  10. goto LASTEXIT
  11.  
  12. :ONEPARAM
  13. if not exist %1\Stlth32.DSC GOTO SHOWUSAGE
  14. if not exist %1\SVGA.EXE GOTO SHOWUSAGE
  15. if not exist %2\OS2\INSTALL\DSPINSTL.EXE GOTO SHOWUSAGE
  16.  
  17. copy %1\svga.exe %2\os2
  18. copy %1\Stlth32.DSC %2\OS2\INSTALL\Stlth32.DSC
  19. dspinstl
  20. goto LASTEXIT
  21.  
  22. :SHOWUSAGE
  23. echo Usage: INSTALL A: C:
  24. echo Where A: is the drive with the Diamond OS-2 Installation Diskette.
  25. echo and C: is the drive where OS/2 is installed.
  26.  
  27. goto LASTEXIT
  28.  
  29. :LASTEXIT
  30.  
  31.