home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / netdor3.zip / VNDINST / FRNTENDS / MSWORD / PACKINST.CMD next >
OS/2 REXX Batch file  |  1996-04-04  |  1KB  |  48 lines

  1. /******************************************************************
  2.  
  3. Description:    MSWORD Install Exec.
  4.  
  5. Details:        This installation exec runs the MSWORD
  6.                 SETUP program.  It also gives the user a little
  7.                 incentive to create a local directory via SETUP
  8.                 and to let SETUP modify their CONFIG.SYS.
  9.  
  10. Dependencies:
  11.    Externals:   None
  12.    Drive(s):    None
  13.    Directories: None
  14.    Window Type: FS/WIN
  15.    App Title:   None
  16.  
  17. Last Updated:   3/29/91
  18. ******************************************************************/
  19. trace 'O'
  20. '@echo off'
  21.  
  22. /* Give header */
  23. say
  24. say
  25. say  'MSWORD SETUP'
  26. say  '------------'; say
  27. say 'You are about to run the MSWORD SETUP program.'
  28. say 'Make sure that you specify a personal directory'
  29. say 'via SETUP and that you let SETUP make changes to'
  30. say 'your CONFIG.SYS.'; say
  31. say 'Press any key to run MSWORD SETUP...'
  32. 'pause>nul'
  33.  
  34.  
  35. /* Give exit message */
  36. say 'Running the MSWORD setup program...'
  37. 'SETUP USER'
  38. 'CLS'
  39. say; say
  40. say 'Note'
  41. say '----'; say
  42. say 'MSWORD is ready to run now if you created a local'
  43. say 'personal directory and if SETUP has updated your'
  44. say 'CONFIG.SYS.'; say
  45. say 'Press any key to return to VENDOR...'
  46. 'pause>nul'
  47. 'EXIT'
  48.