我正在尝试使用以下批处理脚本将文件复制到文件夹中
WixUIExtension.dll
但是,出现以下错误:
不支持UNC路径。默认为Windows目录。
有一个简单的解决方案吗?
答案 0 :(得分:2)
对于单文件复制,只需使用copy
copy /Y \\path1\file.txt \\path2\backup
其他创建网络共享的方法:
for /f "tokens=2" %i in ('net use * \\server1\folder\') do set src=%%i & goto :continue
:continue
for /f "tokens=2" %i in ('net use * \\server2\backup\') do set dest=%%i & goto :cp
:cp
copy %src%\file.txt %dest% /Y
net use /d %src%
net use /d %dest%
只有在您已经设置了凭据的情况下,以上操作才有效。如果没有,则可以按照以下步骤进行操作:
net use \\server1\IPC$ /user:username password