home *** CD-ROM | disk | FTP | other *** search
/ World of Shareware - Software Farm 2 / wosw_2.zip / wosw_2 / DATABASE / INFO.ZIP / INSTALL.BAT next >
DOS Batch File  |  1990-11-01  |  2KB  |  64 lines

  1. echo off
  2. rem (C)Copyright TexaSoft, 1990
  3. verify on
  4. if %1x==x goto explain
  5. if %2x==x goto explain
  6. cls
  7. echo ┌───────────────────────────────────────────────────────────┐
  8. echo           Installation of Information Please 2.0x           │
  9. echo                       to %1%2
  10. echo  
  11. echo        Please follow the instructions on the screen.
  12. echo └───────────────────────────────────────────────────────────┘
  13. echo ┌───────────────────────────────────────────────────────────┐
  14. echo   This routine loads Information Please onto a disk
  15. echo   named %1%2. If the directory on this disk already
  16. echo   exists, the old version is replaced with the new.
  17. echo └───────────────────────────────────────────────────────────┘
  18. md %1%2
  19. echo ┌───────────────────────────────────────────────────────────┐
  20. echo │ NOTE:If you get the message "unable to create directory"  │
  21. echo │ during installation, it means the directory was           │
  22. echo │ already created. The loading process will still be normal.│
  23. echo └───────────────────────────────────────────────────────────┘
  24. echo ┌───────────────────────────────────────────────────────────┐
  25. echo │ If you are not certain you wish to continue, press        │
  26. echo │ CTRL-BREAK. If you are certain you wish to continue, then │
  27. echo └───────────────────────────────────────────────────────────┘
  28. PAUSE
  29. cls
  30. ECHO . . . Installing to %1\IP . . .
  31. IP2.exe /e%1%2 /x
  32. %1
  33. cd%2
  34. cls
  35. echo ┌───────────────────────────────────────────────────────┐
  36. echo │              INSTALLATION IS FINISHED!                │
  37. echo └───────────────────────────────────────────────────────┘
  38. goto End
  39. :Explain
  40. cls
  41. echo ──────────────────────────────────────────────────────────────────────
  42. echo Please follow these instructions to install the program.
  43. echo Enter the command:
  44. echo  
  45. echo INSTALL d: \directory
  46. echo  
  47. echo where d: is the name of the drive where you want to install IP,
  48. echo and \directory is the directory name where you want program to reside.
  49. echo For example, to load to a hard disk, the command will probably be
  50. echo  
  51. echo INSTALL C: \IP
  52. echo  
  53. echo (make sure there is a blank between the C: and the \)
  54. echo  
  55. echo To load to a floppy disk in drive B: you would use the command
  56. echo  
  57. echo INSTALL B: \
  58. echo  
  59. echo (again, make sure there is a blank between B: and \).
  60. echo ──────────────────────────────────────────────────────────────────────
  61. :End
  62.  
  63.  
  64.