home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Media Gallery 1995 July
/
MG_0795.ISO
/
spea
/
install
/
stplus
/
os2
/
gateway.cmd
< prev
next >
Wrap
OS/2 REXX Batch file
|
1994-06-10
|
605b
|
25 lines
@echo off
if .%1==. goto SHOWUSAGE
IF .%2==. GOTO SHOWUSAGE
:ONEPARAM
if not exist %1\tsengw32.DSC GOTO SHOWUSAGE
if not exist %2\OS2\INSTALL\DSPINSTL.EXE GOTO SHOWUSAGE
copy %1\screen01.* %2\OS2
ECHO OFF
ECHO ******************************************************
ECHO *** You must now shut down your system and reboot !***
ECHO ******************************************************
goto LASTEXIT
:SHOWUSAGE
echo Usage: GATEWAY 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