home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 30 fixes_v / 30-fixes_v.zip / per310a.zip / ba2dereg.cmd next >
OS/2 REXX Batch file  |  1995-10-23  |  1KB  |  29 lines

  1. /*---------------------------------------------------------------------*/
  2. /*  BA2DEREG.CMD - Written by Brad Benson                              */
  3. /*  Copyright (C) 1995 by Computer Data Strategies, Inc.               */
  4. /*  All Rights Reserved                                                */
  5. /*                                                                     */
  6. /*  Deregisters BA/2 Device Class.                                     */
  7. /*                                                                     */
  8. /*  Date        Programmer  Change                                     */
  9. /*  ---------   ----------  ------                                     */
  10. /*  03-23-95    BCB         Initial version                            */
  11. /*                                                                     */
  12. /*---------------------------------------------------------------------*/
  13.  
  14. /* Load the REXXUTIL stuff */
  15. call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs'
  16. call SysLoadFuncs
  17.  
  18. /* De-register BA/2 device class */
  19. if SysDeregisterObjectClass("BA2Device") then
  20.   do
  21.     say 'Deregistered BA/2 WPS device class ok.  Please delete all'
  22.     say 'BA/2 backup device objects and templates before continuing'
  23.     say 'with installation.'
  24.   end
  25. else
  26.   say 'Could not de-register BA/2 device class; probably not registered.'
  27.  
  28.  
  29.