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

  1. @echo off
  2. echo.
  3. echo ***************************
  4. echo *  XXCOPY INSTALL SCRIPT  *
  5. echo ***************************
  6. echo.
  7. ::--------------------------------------------------------------------------
  8. :: Make the directory where this batch file resides the current directory
  9. ::
  10. if "%OS%"=="Windows_NT" ((cd /d %~dp0)&(goto next))
  11. echo %0 | find.exe ":" >nul
  12. if not errorlevel 1 %0\
  13. cd %0\..
  14. :next
  15. echo The current directory is:
  16. cd
  17. echo.
  18. ::--------------------------------------------------------------------------
  19. if not exist .\readme.txt   goto error1
  20. if not exist .\xxcopy.exe   goto error1
  21. if not exist .\xxpbar.exe   goto error1
  22. if not exist .\xxcopy16.exe goto error1
  23. if not exist .\install.bat  goto error1
  24. if not exist .\uixxcopy.bat goto error1
  25. goto start
  26. ::--------------------------------------------------------------------------
  27. :error1
  28. echo.
  29. echo The following files are expected to be present in the current directory.
  30. echo.
  31. echo        README.TXT      // Please read this file first
  32. echo        XXCOPY.EXE      // the workhorse of this package
  33. echo        XXPBAR.EXE      // used when /PB (progress bar) is used
  34. echo        XXCOPY16.EXE    // the 16-bit version for DOS environment
  35. echo        UIXXCOPY.BAT    // uninstall XXCOPY-related entries from registry
  36. echo.
  37. goto end
  38. ::--------------------------------------------------------------------------
  39. :start
  40. xxcopy.exe  /install
  41. echo.
  42. echo --------- [ install.bat ] --------------------------------------------
  43. if errorlevel 1 goto error2
  44. echo.
  45. echo  Congratulations!!!  XXCOPY has been successfully installed.
  46. echo.
  47. echo  If you ever need to uninstall the XXCOPY software package,
  48. echo  run the following sequence (moved into the XXCOPY home directory).
  49. echo.
  50. echo    XXCOPY     /uninstall
  51. echo    UIXXCOPY
  52. echo.
  53. echo  If you followed the recommendation for XXCOPY's home directory,
  54. echo  the XXCOPY files have been copied to its permanent directory. 
  55. echo  The XXCOPY-related files in this temporary directory where
  56. echo  the install batch file was launched are no longer needed.
  57. echo.
  58. echo         README.TXT
  59. echo         XXCOPY.EXE
  60. echo         XXPBAR.EXE
  61. echo         XXCOPY16.EXE
  62. echo         INSTALL.BAT
  63. echo         UIXXCOPY.BAT
  64. echo.
  65. goto end
  66. :error2
  67. echo.
  68. echo To install XXCOPY, run the following command from this directory.
  69. echo.
  70. echo   XXCOPY /INSTALL
  71. echo.
  72. :end
  73.