home *** CD-ROM | disk | FTP | other *** search
/ Chip Hitware 6 / Chip_Hitware_Vol_06.iso / chiphit6 / tools / 95ssacti / ssa-del.bat < prev    next >
DOS Batch File  |  1996-05-12  |  669b  |  27 lines

  1. @echo off
  2. if "%1"== "" goto done
  3. if not exist %1\*.* goto done
  4. echo You are about to remove Screen Saver Activate 1.2.4
  5. echo from %1.
  6. echo. 
  7. yesno Do you wish to continue with this un-install process
  8. if errorlevel 1 goto YES1
  9. goto DONE
  10. :YES1
  11. echo.
  12. if exist %1\ssactivate.exe %1\ssactivate.exe -uninstall
  13. if exist %1\*.TXT del %1\*.TXT
  14. if exist %1\*.ICO del %1\*.ICO
  15. if exist %1\*.WRI del %1\*.WRI
  16. if exist %1\ssactivate.exe del %1\ssactivate.exe
  17. rd %1
  18. echo.
  19. echo Screen Saver Activate 1.2.4 has been removed.
  20. echo.
  21. echo You will need to manually delete any program groups
  22. echo or icons which relate to this application.
  23. echo.
  24. pause
  25. :done
  26. EXIT
  27.