home *** CD-ROM | disk | FTP | other *** search
/ The Pier Shareware 6 / The_Pier_Shareware_Number_6_(The_Pier_Exchange)_(1995).iso / 035 / fileb190.zip / FILEBAR.ZIP / INSTALL.CMD < prev    next >
OS/2 REXX Batch file  |  1994-11-25  |  2KB  |  41 lines

  1. /* REXX installation script for FileBar */
  2.  
  3. call RxFuncAdd 'SysCls', 'RexxUtil', 'SysCls'
  4. call RxFuncAdd 'SysCreateObject', 'RexxUtil', 'SysCreateObject'
  5.  
  6. currentDirectory = directory()
  7. programName =  "\FILEBAR.EXE"
  8. programName2 = "\GERMAN.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","FileBar - Version 1.90","<WP_DESKTOP>",,
  16.                 executable, "REPLACE" )
  17. SysCreateObject("WPProgram","FileBar - Version 1.90 (German)","<WP_DESKTOP>",,
  18.                 executable2, "REPLACE" )
  19. call SysCls
  20.  
  21. say ""
  22. say ""
  23. say "----------------------------------------------------------------"
  24. say " FileBar - OS/2 Application Launch Facility & Shell Replacement "
  25. say " Written By Eric A. Wolf - Copr. (C) 1994 - All Rights Reserved "
  26. say "----------------------------------------------------------------"
  27. say ""
  28. say " FileBar objects successfully created on desktop..."
  29. say ""
  30. say " Start FileBar by double-clicking on the  program object.  And, "
  31. say " for  future  OS/2 sessions, drag  this object to  your startup "
  32. say " folder (found in  OS/2 System Folder) so  that FileBar will be "
  33. say " 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.