home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 18 REXX / 18-REXX.zip / mnrexx10.zip / uninstal.cmd < prev   
OS/2 REXX Batch file  |  1994-09-12  |  464b  |  18 lines

  1. /*** uninstall MNRexx ***/
  2.  
  3. call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs'
  4. call SysLoadFuncs
  5.  
  6. if SysDeregisterObjectClass("MNRexx") then
  7. do
  8.     say "MNRexx object is successfully deregisterd."
  9.     say "Please shutdown and reboot now."
  10.     say "After reboot, delete the MNRexx.dll file in your installation directory."
  11. end
  12. else
  13. do
  14.     say "MNRexx cannot be deregistered."
  15.     say "Please make sure there is no instance of MNRexx."
  16. end
  17.  
  18.