home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1995 November / PCWK1195.iso / ibm / install.cmd < prev    next >
OS/2 REXX Batch file  |  1995-09-14  |  538b  |  18 lines

  1. /* Installer */
  2. if RxFuncQuery('SysCreateObject') then
  3.    call RxFuncAdd 'SysCreateObject', 'RexxUtil', 'SysCreateObject'
  4.  
  5. ASDI.EXE
  6. InstallFile     = 'DEMO.EXE'
  7. newDir     = LINEIN('c:\setzpath.txt')
  8. iconDir    = newDir'\'
  9. '@Echo Off'
  10. dpath        = newDir'\'InstallFile
  11. ClassName = 'WPProgram'
  12. Location   = '<WP_DESKTOP>'
  13. Title       = 'Interactive Guide to OS/2 Warp'
  14. Setup = 'EXENAME='Dpath';PROGTYPE=PROG_31_ENH;StartUpDir='newDir';IconFile='iconDir'IBMWARP.ICO;'
  15.  
  16. call SysCreateObject ClassName, Title, Location, Setup, 'R'
  17. return
  18.