home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / XXCopy / UIXXCOPY.BAT < prev    next >
DOS Batch File  |  2004-10-06  |  1KB  |  45 lines

  1. @echo off
  2. echo.
  3. echo *****************************
  4. echo *  XXCOPY UNINSTALL SCRIPT  *
  5. echo *****************************
  6. echo.
  7. echo This batch script will delete the following files from this directory
  8. echo.
  9. echo     XXCOPY.EXE        ; A 32-bit version for Windows 95/98
  10. echo     XXPBAR.EXE        ; The Progress Bar display module
  11. echo     XXCOPY16.EXE      ; A 16-bit version for DOS
  12. echo     UIXXCOPY.BAT      ; this file
  13. echo.
  14. echo Are you ready to delete XXCOPY.EXE from the current directory
  15. echo If not, press Ctrl-Break to terminate this batch script
  16. echo To continue,  press any other key now.
  17. pause >nul
  18. echo.
  19. echo del  XXCOPY.EXE
  20. del  XXCOPY.EXE
  21. echo Are you ready to delete XXPBAR.EXE from the current directory
  22. echo If not, press Ctrl-Break to terminate this batch script
  23. echo To continue,  press any other key now.
  24. pause >nul
  25. echo.
  26. echo del  XXPBAR.EXE
  27. del  XXPBAR.EXE
  28. echo Are you ready to delete XXCOPY16.EXE from the current directory
  29. echo If not, press Ctrl-Break to terminate this batch script
  30. echo To continue,  press any other key now.
  31. pause >nul
  32. echo.
  33. echo del  XXCOPY16.EXE
  34. del  XXCOPY16.EXE
  35. echo Are you ready to delete UIXXCOPY.BAT from the current directory
  36. echo If not, press Ctrl-Break to terminate this batch script
  37. echo To continue,  press any other key now.
  38. pause >nul
  39. echo.
  40. echo del  UIXXCOPY.BAT
  41. echo.
  42. echo Uninstall XXCOPY complete.
  43. echo.
  44. del  UIXXCOPY.BAT
  45.