home *** CD-ROM | disk | FTP | other *** search
- @echo off
- if .%1==. goto SHOWUSAGE
- IF .%2==. goto SHOWUSAGE
-
- goto ONEPARAM
-
- copy %1\tsengw32.DSC %2\OS2\INSTALL\tsengw32.DSC
- copy %1\vmode.com %2\os2
- dspinstl
- goto LASTEXIT
-
- :ONEPARAM
- if not exist %1\tsengw32.DSC GOTO SHOWUSAGE
- if not exist %2\OS2\INSTALL\DSPINSTL.EXE GOTO SHOWUSAGE
-
- copy %1\tsengw32.DSC %2\OS2\INSTALL\tsengw32.DSC
- dspinstl
- goto LASTEXIT
-
- :SHOWUSAGE
- echo Usage: INSTALL A: C:
- echo Where A: is the drive with the Tseng Installation Diskette.
- echo and C: is the drive where OS/2 is installed.
-
- goto LASTEXIT
-
- :LASTEXIT
-
-