home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 1995 March / SOFM_Mar1995.bin / pc / os2 / rme101 / install.cmd < prev    next >
OS/2 REXX Batch file  |  1995-01-27  |  2KB  |  41 lines

  1. /* REXX installation script for RemindMe */
  2.  
  3. call RxFuncAdd 'SysCls', 'RexxUtil', 'SysCls'
  4. call RxFuncAdd 'SysCreateObject', 'RexxUtil', 'SysCreateObject'
  5.  
  6. currentDirectory = directory()
  7. programName =  "\REMINDME.EXE"
  8. programName2 = "\INTERNTL.EXE"
  9.  
  10. programPath = insert( currentDirectory, programName )
  11. executable = insert( "EXENAME=", programPath )
  12. programPath2 = insert( currentDirectory, programName2 )
  13. executable2 = insert( "EXENAME=", programPath2 )
  14.  
  15. SysCreateObject("WPProgram","RemindMe - Int'l Version","<WP_DESKTOP>",,
  16.                 executable2,"REPLACE" )
  17. SysCreateObject("WPProgram","RemindMe - Version 1.01","<WP_DESKTOP>",,
  18.                 executable,"REPLACE" )
  19.  
  20. call SysCls
  21. say ""
  22. say ""
  23. say "----------------------------------------------------------------"
  24. say " RemindMe - an OS/2 Calendar and Scheduling Application         "
  25. say " Written By Eric A. Wolf - Copr. (C) 1995 - All Rights Reserved "
  26. say "----------------------------------------------------------------"
  27. say ""
  28. say " RemindMe objects successfully created on desktop..."
  29. say ""
  30. say " Start RemindMe by double-clicking  on the program object.  And,"
  31. say " for  future  OS/2 sessions, you  may drag  this  object to your"
  32. say " startup  folder  (found  in the OS/2  System  Folder)  so  that"
  33. say " RemindMe will be executed every time you boot OS/2."
  34. say ""
  35. say "****************************************************************"
  36. say "* This program is distributed as Shareware!  You MUST register *"
  37. say "* this  product if you  continue  to  use it.   Please see the *"
  38. say "* documentation for the complete details.                      *"
  39. say "****************************************************************"
  40. say ""
  41.