home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 4 Drivers / 04-Drivers.zip / aureal.zip / UNINSTAL.CMD < prev    next >
OS/2 REXX Batch file  |  1998-05-13  |  388b  |  19 lines

  1. /* Uninstall REXX script */
  2. Call RxFuncAdd 'SysLoadFuncs', 'REXXUTIL', 'SysLoadFuncs'
  3. Call SysLoadFuncs
  4.  
  5. say "Uninstalling the TBS Montego MMPM/2 drivers"
  6.  
  7. if SysDestroyObject("<AURDMN>") 
  8. Then Do
  9.     Say "Aureal Daemon object successfully removed."
  10. End 
  11. Else Do
  12.     Say "Failed to remove Aureal Daemon object"
  13. End    
  14.         
  15. Say "Starting minstall..."
  16. minstall
  17.     
  18. Exit 0
  19.