home *** CD-ROM | disk | FTP | other *** search
/ Sunny 1,000 Collection / SUNNY1000.iso / Files / Dos / Boardak / CLKIT100.ZIP / INSTALL.BAT < prev    next >
DOS Batch File  |  1995-02-17  |  2KB  |  57 lines

  1. @echo off
  2. rem INSTALL.BAT for CLICKIT revised 02/15/95
  3. cls
  4. echo                          Click-It Installation Program
  5. echo --------------------------------------------------------------------------------
  6.  
  7. if "%1"=="" goto BadParams
  8. if "%2"=="" goto BadParams
  9. if "%3"=="" goto BadParams
  10. goto ParamsOK
  11.  
  12. :BadParams
  13. echo      You must enter a command similar to the following...
  14. echo  
  15. echo            INSTALL A: C: CLICKIT     where...
  16. echo            =====================
  17. echo  
  18. echo            "A:" represents the install SOURCE diskette drive letter
  19. echo  
  20. echo            "C:" represents the install TARGET disk drive letter
  21. echo  
  22. echo            "CLICKIT" represents the Click-It DIRECTORY name
  23. echo  
  24. echo      You should use your own drive letters and directory name if they are 
  25. echo      different from this sample.
  26. echo  
  27. echo  
  28. echo      Please try again or enter README for more information.
  29. echo --------------------------------------------------------------------------------
  30. goto Outahere
  31.  
  32. :ParamsOK
  33. echo Click-It files will now be copied.
  34. echo Please stand by.
  35. echo  
  36. %2
  37. cd\
  38. md %3
  39. %1
  40. copy register.frm %2\%3 > nul
  41. copy view.com %2\%3 > nul
  42. copy clickit.* %2\%3
  43. copy *.clk %2\%3
  44. echo  
  45. echo Click-It has been installed in %2\%3.
  46. echo --------------------------------------------------------------------------------
  47. pause
  48. %2
  49. cd\%3
  50. view clickit.doc
  51. cls
  52. echo Enter CLICKIT right now to play.
  53. echo --------------------------------
  54. echo  
  55. :Outahere
  56.  
  57.