home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 8 Other
/
08-Other.zip
/
tos_pm10.zip
/
aeg_inst.cmd
next >
Wrap
OS/2 REXX Batch file
|
1995-11-23
|
1KB
|
29 lines
/************************************/
/* */
/* Snake-Byte Incorporated */
/* Copyright (c) 1995 */
/* */
/* Automated EpGuide */
/* Installation Script */
/* */
/* */
/************************************/
call RxFuncAdd "SysLoadFuncs", "RexxUtil", "SysLoadFuncs"
call SysLoadFuncs
say "Creating an A.E.G. desktop object...Please Wait..."
rc = SysFileTree("tos_pm10.exe", fspec, "FO")
if rc=0 then
do
filename=filespec("Name", fspec.1)
filepath=filespec("Path", fspec.1)
filedrive=filespec("Drive", fspec.1)
if SysCreateObject("WPProgram", "Star Trek: TOS PM A.E.G.",,
"<WP_DESKTOP>", "EXENAME="filedrive||filepath||filename,
";STARTUPDIR="||filedrive||filepath, "replace") then
say "A.E.G. Desktop object was successfully created."
exit
end