home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / tasker1.zip / INSTALL / ES_REG.CMD < prev    next >
OS/2 REXX Batch file  |  1994-01-11  |  396b  |  20 lines

  1. /* Register the object Batch */
  2.  if arg(1) = "" then do
  3.     say "No arguments,"
  4.     say "Exiting now"      
  5.     return
  6.  end
  7.  
  8.  parse arg arg1 argn
  9.  
  10.  call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs'
  11.  call SysLoadFuncs
  12.  
  13.  rc=SysDeRegisterObjectClass( 'Batch' )
  14.  
  15.  rc=SysRegisterObjectClass( 'Batch' , arg1 )
  16.  
  17.  'start "Delete Register Object" /C es_del ES_REGISTER'
  18.  
  19.  return
  20.