Curious to know if anyone here can resolve my issue.
Have a download server, and I'm using ROBOCOPY to automatically pull completed downloads onto my storage server. I then want the SOURCE to be deleted so I'm not holding double copies.
Using the following string currently:
ROBOCOPY H:\TV D:\MediaStore\TV /COPYALL /Z /S /MOVE /TS /FP /np /log+:Sync_log.txt
It is copying files across, but NOT removing source and I get the following error which I assume is the error in deleting content.
ERROR 1314 (0x00000522) Copying NTFS Security to Destination Directory e:\data\folder\filename A required privilege is not held by the client.
H:\TV is a network share bound to a drive using:
net use h: \\RSERVER\Downloads\completed /user:root mypassword /persistent:no
I would expect using root level permissions should give me full reign... apparently not the case.]
I can go directly into the H:\ share and delete files without an issue... Anyone know how to resolve this?
Have a download server, and I'm using ROBOCOPY to automatically pull completed downloads onto my storage server. I then want the SOURCE to be deleted so I'm not holding double copies.
Using the following string currently:
ROBOCOPY H:\TV D:\MediaStore\TV /COPYALL /Z /S /MOVE /TS /FP /np /log+:Sync_log.txt
It is copying files across, but NOT removing source and I get the following error which I assume is the error in deleting content.
ERROR 1314 (0x00000522) Copying NTFS Security to Destination Directory e:\data\folder\filename A required privilege is not held by the client.
H:\TV is a network share bound to a drive using:
net use h: \\RSERVER\Downloads\completed /user:root mypassword /persistent:no
I would expect using root level permissions should give me full reign... apparently not the case.]
I can go directly into the H:\ share and delete files without an issue... Anyone know how to resolve this?