home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 February / PCWorld_2000-02_cd.bin / Software / Vyzkuste / awave / Setup.exe / RCDATA / UNINST_BAT < prev   
Text File  |  2000-01-01  |  1KB  |  53 lines

  1. @echo off
  2. cd %1
  3.  
  4. cls
  5. echo --------------------------------------------------------------------------------  Awave Audio uninstallation procedure                            FMJ-Software  --------------------------------------------------------------------------------
  6. echo Uninstalling... (%1)
  7.  
  8. rem ** Clean up the registry **
  9. if exist awaveaud.exe goto runexe
  10. echo Error: Could not find AwaveAud.exe
  11. echo.
  12. echo Uninstallation aborted!
  13. goto end
  14. :runexe
  15. echo Cleaning up the registry...
  16. dir > awblock
  17. awaveaud.exe -UNINSTALL
  18. :wait
  19. if exist awblock goto wait
  20.  
  21. rem ** Delete files? **
  22. if not exist awdel goto nodel
  23.  
  24. echo Deleting files...
  25. del awdel
  26. if exist awaveaud.gid attrib -h awaveaud.gid
  27. :retry
  28. del awaveaud.*
  29. if exist awaveaud.exe goto retry
  30. if exist setup.exe del setup.exe
  31. if exist file_id.diz del file_id.diz
  32. del *.txt
  33.  
  34. echo.
  35. echo Done!
  36. echo.
  37. echo.
  38. echo.
  39. echo.
  40. echo.
  41. echo.
  42. echo.
  43. echo.
  44. del uninst.bat
  45. goto end
  46.  
  47. :nodel
  48. echo.
  49. echo Done! (No files deleted).
  50. echo.
  51.  
  52. :end
  53.