home *** CD-ROM | disk | FTP | other *** search
/ Chip Hitware 3 / CHIP_HITWARE3.iso / chiphit3 / tools / 95mmouse / mbut-del.bat < prev    next >
DOS Batch File  |  1996-06-07  |  684b  |  27 lines

  1. @echo off
  2. if "%1"=="" goto done
  3. if not exist %1\*.* goto done
  4. echo You are about to remove Middle Mouse Button ver 1.9.0e
  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\MBUTTON.EXE %1\MBUTTON -uninstall
  13. if exist %1\MBUT*.TXT del %1\MBUT*.TXT
  14. if exist %1\MBUT*.WRI del %1\MBUT*.WRI
  15. if exist %1\MBHOOK.DLL del %1\MBHOOK.DLL
  16. if exist %1\MBUTTON.EXE del %1\MBUTTON.EXE
  17. rd %1
  18. echo.
  19. echo Middle Mouse Button ver 1.9.0e 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.