home *** CD-ROM | disk | FTP | other *** search
/ The Pier Shareware 6 / The_Pier_Shareware_Number_6_(The_Pier_Exchange)_(1995).iso / 035 / jlist01.zip / de-inst.cmd next >
OS/2 REXX Batch file  |  1994-10-09  |  506b  |  16 lines

  1. /* Script to delete the WPS object and the USER_INI entries created by
  2.    install.cmd for JList */
  3.  
  4. /* Install the needed functions from RexxUtil */
  5. call RxFuncAdd 'SysDestroyObject','RexxUtil','SysDestroyObject'
  6. call RxFuncAdd 'SysIni','RexxUtil','SysIni'
  7.  
  8. /* Remove the WPS object */
  9. if SysDestroyObject('<JLIST>') then
  10.   say 'The JList program object has been removed.'
  11. else
  12.   say 'Could not remove the JList program object.'
  13.  
  14. /* Delete the USER_INI entries */
  15. call SysIni 'USER','JList'
  16.