Batch 拷贝远程机器文件到本机指定目录下
Posted kill0001000
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Batch 拷贝远程机器文件到本机指定目录下相关的知识,希望对你有一定的参考价值。
net use * /del /yes
NET USE Y: \\远程机IP\d$ 登录密码 /user:domain\登录用户
set sourcePath="Y:\DOAutomationTest\automation_do_scriptlibrary_soapui\Compare Test and Benchmark Environment\Version 1\direct"
set targetPath1="C:\Program Files\SmartBear\ReadyAPI-1.9.0\bin\scripts\direct"
set targetPath2="C:\Program Files\SmartBear\ReadyAPI-1.3.1\bin\scripts\direct"
del /Q %targetPath1%
del /Q %targetPath2%
pushd %sourcePath%
xcopy %sourcePath%\*.groovy %targetPath1% /R /Y
xcopy %sourcePath%\*.groovy %targetPath2% /R /Y
set sourcePath2="Y:\DOAutomationTest\automation_do_scriptlibrary_soapui\JARs"
set targetPath4="C:\Program Files\SmartBear\ReadyAPI-1.9.0\lib"
set targetPath5="C:\Program Files\SmartBear\ReadyAPI-1.3.1\lib"
pushd %sourcePath2%
xcopy %sourcePath2%\jsonassert*.jar %targetPath4% /R /Y
xcopy %sourcePath2%\jsonassert*.jar %targetPath5% /R /Y
net use * /del /yes
pause
以上是关于Batch 拷贝远程机器文件到本机指定目录下的主要内容,如果未能解决你的问题,请参考以下文章