home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Spezial
/
SPEZIAL2_97.zip
/
SPEZIAL2_97.iso
/
ANWEND
/
ONLINE
/
CTELO21
/
install.cmd
< prev
next >
Wrap
OS/2 REXX Batch file
|
1997-05-10
|
2KB
|
47 lines
/***************************************************************************/
/*** CapiTel Installation Rexx-Script ***/
/*** (c) 1996-97 by Carsten Wimmer and Werner Fehn ***/
/*** All Rights Reserved. ***/
/***************************************************************************/
Call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs'
Call SysLoadFuncs
Call SysCls
say ""
say " ============================================================================="
say ""
say " ////// /////// ////// // /////// ////// //"
say " // // // // // // // // //"
say " // /////// ////// // // //// //"
say " // // // // // // // //"
say " ////// // // // // // ////// //////"
say ""
say " ISDN CAPI 1.1 based Answering Machine for OS/2 PM"
say ""
say " Installation"
say ""
say " ============================================================================="
say ""
say ""
say "This Installation-Script will create a CapiTel object on your desktop."
call charout, "Do you want to proceed? (Y/N) "
pull answ .
say ""
if answ <> "Y" & answ <> "y" then do
say "Aborting Installation..."
say ""
exit
end
ctEXE = "\CAPITEL.EXE"
myDir = directory()
setupString = "EXENAME="||myDir||ctEXE||";STARTUPDIR="||myDir";REPLACE"
call SysCreateObject "WPProgram", "CapiTel", "<WP_DESKTOP>", setupString
say "Object has been created..."
exit