我正在尝试编写一个 robocopy 命令来将文件从我的本地计算机复制到我的任何一个部署服务器
ROBOCOPY ../../MyService/bin/release/ \\remote-computer\\C:\services\myservice /MIR
我得到这个错误
The system detected a possible attempt to compromise security.
Please ensure that you can contact the server that authenticated you.
这是意料之中的,因为我没有在命令中包含任何类型的安全凭证。
有没有办法通过包含权限来让它工作?我不想通过共享文件夹和类似的东西来做到这一点。我看过,但在文档中看不到任何内容。
我应该这样做psexec
吗?或者也许我应该使用类似 powershell 的东西?