home *** CD-ROM | disk | FTP | other *** search
/ The Best of the Best / _.img / 01220 / icoinst.bat < prev    next >
DOS Batch File  |  1992-06-29  |  1KB  |  52 lines

  1. @echo off
  2. REM
  3. REM    Install IcoShow
  4. REM    Last revision 06/29/92
  5. REM    Usage: ICOINST drive:directory
  6. REM
  7.  
  8. if "%1"=="" goto usage
  9.  
  10. if exist %1\NUL goto copyit
  11. md %1
  12. if not exist %1\NUL goto error
  13.  
  14. :copyit
  15. echo.
  16. echo Copying IcoShow to directory %1
  17. copy a:\icoshow.exe %1 >NUL
  18. copy a:\icoshow.hlp %1 >NUL
  19. copy a:\icoshowh.dll %1 >NUL
  20.  
  21. if exist %1\icoshow.ini goto warning
  22. copy a:\icoshow.ini %1 >NUL
  23. goto endcopy
  24.  
  25. :warning
  26. echo.
  27. echo Your file ICOSHOW.INI wasn't been overwritten since you have an old version.
  28. echo If you wish to write a new version set the option "Save settings" from
  29. echo options menu and IcoShow will do it for you.
  30. pause
  31.  
  32. :endcopy
  33. echo.
  34. echo The copy was succesfully. Start IcoShow with
  35. echo                 %1\icoshow
  36. echo from Windows.
  37. echo.
  38. goto quit
  39.  
  40. :usage
  41. echo Use IcoShow with the following command line
  42. echo.
  43. echo              ICOINST drive:directory
  44. echo.
  45. goto quit
  46.  
  47. :error
  48. echo I could not create the directory %1. Please repeat the installation.
  49. echo Possibly disk is full.
  50.  
  51. :quit
  52.