home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 18 / 18.iso / w / w252 / 4.ddi / CPNODE.BAT < prev    next >
Encoding:
DOS Batch File  |  1993-03-10  |  1.4 KB  |  57 lines

  1. @Echo Off
  2. if /%1==/ goto Help
  3. if /%2==/ goto Help
  4. echo\
  5. echo\
  6. echo  ***************************************************************
  7. echo\
  8. echo    This batch file will copy all the files needed to setup the 
  9. echo    network version of Amipro 2.0T to the server. Please verify
  10. echo    that you have enter the source and destination pathname 
  11. echo    correctly, and that the destination directory exist. 
  12. echo\
  13. echo    Syntax:  cpnode [source path] [destination network path]
  14. echo\
  15. echo  ***************************************************************
  16. echo\
  17. echo\
  18. echo  Copying from %1\*.* to %2 ...
  19. echo\
  20. echo\
  21. pause
  22.  
  23. copy %1\eqnini.cmz      %2
  24. copy %1\imageini.cmz    %2
  25. copy %1\ini.cmz         %2
  26. copy %1\compress.dll    %2
  27. copy %1\ivcw.dll        %2
  28. copy %1\licenser.exe    %2
  29. copy %1\node.exe        %2
  30. copy %1\licenser.hlp    %2
  31. copy %1\nodeinfo.ins    %2
  32. copy %1\scriptn.ins     %2
  33. copy %1\scrptn31.ins    %2
  34. goto Done
  35.  
  36. :Help
  37. echo\
  38. echo  ************************** Error !!! ***************************
  39. echo\
  40. echo    You have not enter either the source or the destination 
  41. echo    pathname or both. Please check that you have both pathnames
  42. echo\
  43. echo    Syntax:  cpnode [source path] [destination network path]
  44. echo\
  45. echo  ****************************************************************
  46. echo\
  47. echo\
  48. goto End
  49.  
  50. :Done
  51. echo\
  52. echo  ***  Copying of files is completed  ***
  53. echo\
  54. echo\
  55.  
  56. :End
  57.