尝试通过批处理文件从远程计算机复制到本地时访问被拒绝的问题

Access denied issue when tried to copy from remote machine to local through batch file

步骤:

机器A


运行宁一个批处理文件连接到机器 B 和运行它上面的一个批处理文件(test.bat)

机器 B


test.bat

我使用的复制命令: copy text.txt \Machine A\shared folder\test.txt(我可以访问这个批处理文件,但副本出现拒绝访问错误)

知道我做错了什么吗?

你在机器B上的批处理文件在机器A上是运行。只需将批处理中的文件复制到机器A上

copy "\machineb\C$\folder\file.txt" "c:\somefolder\somefile.txt"

C$ 是管理员的默认共享。使用任何合适的共享名。