home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 17 Fixes30 / 17-Fixes30.zip / fixpak1.exe / FIXPAK / OS2SERV.CMD next >
OS/2 REXX Batch file  |  1996-06-20  |  615b  |  13 lines

  1. /*******************************************/
  2. /* Make sure directory with VPUTIL.DLL is  */
  3. /* in the LIBPATH then call OS2SERV.EXE.   */
  4. /*******************************************/
  5. '@Echo off'
  6. Parse arg ops                                           /* Get passed parms */
  7. Parse source . . me .                                   /* Who/where we are */
  8. path=Filespec('DRIVE',me)||Filespec('PATH',me)
  9. path=left(path,length(path)-1)||'\CSF'
  10. Address CMD 'SET BEGINLIBPATH='path            /* Need for VPUTIL.DLL calls */
  11. 'START' path||'\OS2SERV.EXE' ops              /* Now start the real program */
  12. Exit
  13.