home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Media Gallery 1995 July
/
MG_0795.ISO
/
spea
/
install
/
stplus
/
os2
/
install.cmd
< prev
next >
Wrap
OS/2 REXX Batch file
|
1994-06-10
|
565b
|
29 lines
@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