home *** CD-ROM | disk | FTP | other *** search
- @Echo Off
- if /%1==/ goto Help
- if /%2==/ goto Help
- echo\
- echo\
- echo ***************************************************************
- echo\
- echo This batch file will copy all the files needed to setup the
- echo network version of Amipro 2.0T to the server. Please verify
- echo that you have enter the source and destination pathname
- echo correctly, and that the destination directory exist.
- echo\
- echo Syntax: cpnode [source path] [destination network path]
- echo\
- echo ***************************************************************
- echo\
- echo\
- echo Copying from %1\*.* to %2 ...
- echo\
- echo\
- pause
-
- copy %1\eqnini.cmz %2
- copy %1\imageini.cmz %2
- copy %1\ini.cmz %2
- copy %1\compress.dll %2
- copy %1\ivcw.dll %2
- copy %1\licenser.exe %2
- copy %1\node.exe %2
- copy %1\licenser.hlp %2
- copy %1\nodeinfo.ins %2
- copy %1\scriptn.ins %2
- copy %1\scrptn31.ins %2
- goto Done
-
- :Help
- echo\
- echo ************************** Error !!! ***************************
- echo\
- echo You have not enter either the source or the destination
- echo pathname or both. Please check that you have both pathnames
- echo\
- echo Syntax: cpnode [source path] [destination network path]
- echo\
- echo ****************************************************************
- echo\
- echo\
- goto End
-
- :Done
- echo\
- echo *** Copying of files is completed ***
- echo\
- echo\
-
- :End