home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / charm109.zip / CMP109.ZIP / install.cmd < prev   
OS/2 REXX Batch file  |  1997-08-02  |  828b  |  23 lines

  1. /* REXX installation script for Characters Map 1.0 */
  2.  
  3. call RxFuncAdd 'SysCls', 'RexxUtil', 'SysCls'
  4. call RxFuncAdd 'SysCreateObject', 'RexxUtil', 'SysCreateObject'
  5.  
  6. currentDirectory = directory()
  7. programName = "\CHARMAP.EXE"
  8. programPath = insert( currentDirectory, programName )
  9. executable = insert( "EXENAME=", programPath )
  10.  
  11.  
  12. rc = SysCreateObject("WPProgram","CharMap/2","<WP_DESKTOP>",,
  13.                       executable, "REPLACE" )
  14.  
  15. say ""
  16. say " Characters Map object successfully created on desktop..."
  17. say " Start by double-clicking on the program object.        "
  18. say ""
  19. say " *****************************************************************"
  20. say " * This program is distributed as FREEWARE.                      *"
  21. say " *****************************************************************"
  22. say ""
  23.