Robocopy在备份模式下将文件从源复制到目标,并且文件安全权限保持不变


3

我需要使用Robocopy将文件和文件夹从一个共享位置镜像到另一个共享位置,具有安全权限的可重新启动备份模式。

我目前的命令是:

robocopy //sourceServer/src //destinationServer/dest /E /XO /Z /R:5 /W:30 /MIR

我打算使用/zb/SEC标志,必须为用户提供以下权限:

 Manage auditing and security log   SeSecurityPrivilege 
 Backup files and directories       SeBackupPrivilege  

从中执行命令的用户在两个共享驱动器上都有R / W权限,我需要知道的是我需要向用户提供上述权限:

  1. 在源机器上
  2. 在目标计算机上
  3. 在我执行此命令的客户端计算机上。
  4. 在所有的机器上

Answers:


0

选项4 - 但是通过域级别的GPO进行。

创建一个新的组策略对象(或根据需要编辑现有的一个),并将用户添加到这两个权限下Computer Configuration --> Windows Settings --> Security Settings --> Local Policies --> User Rights Assignment。将GPO应用于适当的OU并重新启动受影响的计算机以使更改生效。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.