robocopy ERROR 1314 (0x00000522) on Windows 7 Home Premium











up vote
0
down vote

favorite












I'm using a robocopy script with the switches /COPYALL and /B on my Windows 7 Home Premium PC to backup files to a NAS and I'm getting the error message:




ERROR 1314 (0x00000522) Copying NTFS Security to Destination File (file-location/name) required privilege is not held by the client.




I think it is something to do with account privileges in Windows 7 Home Premium - I read somewhere you need to add the account to the Backup Operators group - but that is for the Server OS.



How can I overcome this problem without upgrading to Windows 7 Pro?



Note: The other Win 7 computer on the network which is Pro does not have this issue.










share|improve this question






















  • Download the Windows Server 2003 Resource Kit Tools. Extract the rktools.exe downloaded file using 7-Zip. Then extract rktools.msi. Among all the files there's one called ntrights.exe. To grant backup privileges to a specific user, run this command from an elevated command prompt: ntrights.exe -u "some_user_name" +r SeBackupPrivilege
    – and31415
    Mar 27 '14 at 10:53

















up vote
0
down vote

favorite












I'm using a robocopy script with the switches /COPYALL and /B on my Windows 7 Home Premium PC to backup files to a NAS and I'm getting the error message:




ERROR 1314 (0x00000522) Copying NTFS Security to Destination File (file-location/name) required privilege is not held by the client.




I think it is something to do with account privileges in Windows 7 Home Premium - I read somewhere you need to add the account to the Backup Operators group - but that is for the Server OS.



How can I overcome this problem without upgrading to Windows 7 Pro?



Note: The other Win 7 computer on the network which is Pro does not have this issue.










share|improve this question






















  • Download the Windows Server 2003 Resource Kit Tools. Extract the rktools.exe downloaded file using 7-Zip. Then extract rktools.msi. Among all the files there's one called ntrights.exe. To grant backup privileges to a specific user, run this command from an elevated command prompt: ntrights.exe -u "some_user_name" +r SeBackupPrivilege
    – and31415
    Mar 27 '14 at 10:53















up vote
0
down vote

favorite









up vote
0
down vote

favorite











I'm using a robocopy script with the switches /COPYALL and /B on my Windows 7 Home Premium PC to backup files to a NAS and I'm getting the error message:




ERROR 1314 (0x00000522) Copying NTFS Security to Destination File (file-location/name) required privilege is not held by the client.




I think it is something to do with account privileges in Windows 7 Home Premium - I read somewhere you need to add the account to the Backup Operators group - but that is for the Server OS.



How can I overcome this problem without upgrading to Windows 7 Pro?



Note: The other Win 7 computer on the network which is Pro does not have this issue.










share|improve this question













I'm using a robocopy script with the switches /COPYALL and /B on my Windows 7 Home Premium PC to backup files to a NAS and I'm getting the error message:




ERROR 1314 (0x00000522) Copying NTFS Security to Destination File (file-location/name) required privilege is not held by the client.




I think it is something to do with account privileges in Windows 7 Home Premium - I read somewhere you need to add the account to the Backup Operators group - but that is for the Server OS.



How can I overcome this problem without upgrading to Windows 7 Pro?



Note: The other Win 7 computer on the network which is Pro does not have this issue.







windows-7 user-accounts robocopy






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 27 '14 at 2:16









Reece

2531618




2531618












  • Download the Windows Server 2003 Resource Kit Tools. Extract the rktools.exe downloaded file using 7-Zip. Then extract rktools.msi. Among all the files there's one called ntrights.exe. To grant backup privileges to a specific user, run this command from an elevated command prompt: ntrights.exe -u "some_user_name" +r SeBackupPrivilege
    – and31415
    Mar 27 '14 at 10:53




















  • Download the Windows Server 2003 Resource Kit Tools. Extract the rktools.exe downloaded file using 7-Zip. Then extract rktools.msi. Among all the files there's one called ntrights.exe. To grant backup privileges to a specific user, run this command from an elevated command prompt: ntrights.exe -u "some_user_name" +r SeBackupPrivilege
    – and31415
    Mar 27 '14 at 10:53


















Download the Windows Server 2003 Resource Kit Tools. Extract the rktools.exe downloaded file using 7-Zip. Then extract rktools.msi. Among all the files there's one called ntrights.exe. To grant backup privileges to a specific user, run this command from an elevated command prompt: ntrights.exe -u "some_user_name" +r SeBackupPrivilege
– and31415
Mar 27 '14 at 10:53






Download the Windows Server 2003 Resource Kit Tools. Extract the rktools.exe downloaded file using 7-Zip. Then extract rktools.msi. Among all the files there's one called ntrights.exe. To grant backup privileges to a specific user, run this command from an elevated command prompt: ntrights.exe -u "some_user_name" +r SeBackupPrivilege
– and31415
Mar 27 '14 at 10:53












1 Answer
1






active

oldest

votes

















up vote
1
down vote













this option should solve the problem and will copy the attributes required.
/COPY:DATSO



Here is more description on this




/COPY:copyflag[s] :: what to COPY for files (default is /COPY:DAT).



(copyflags : D=Data, A=Attributes, T=Timestamps).



(S=Security=NTFS ACLs, O=Owner info, U=aUditing info).







share|improve this answer





















  • It's the 'U' option which causes the failure
    – smirkingman
    13 hours ago











Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














 

draft saved


draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f734095%2frobocopy-error-1314-0x00000522-on-windows-7-home-premium%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes








up vote
1
down vote













this option should solve the problem and will copy the attributes required.
/COPY:DATSO



Here is more description on this




/COPY:copyflag[s] :: what to COPY for files (default is /COPY:DAT).



(copyflags : D=Data, A=Attributes, T=Timestamps).



(S=Security=NTFS ACLs, O=Owner info, U=aUditing info).







share|improve this answer





















  • It's the 'U' option which causes the failure
    – smirkingman
    13 hours ago















up vote
1
down vote













this option should solve the problem and will copy the attributes required.
/COPY:DATSO



Here is more description on this




/COPY:copyflag[s] :: what to COPY for files (default is /COPY:DAT).



(copyflags : D=Data, A=Attributes, T=Timestamps).



(S=Security=NTFS ACLs, O=Owner info, U=aUditing info).







share|improve this answer





















  • It's the 'U' option which causes the failure
    – smirkingman
    13 hours ago













up vote
1
down vote










up vote
1
down vote









this option should solve the problem and will copy the attributes required.
/COPY:DATSO



Here is more description on this




/COPY:copyflag[s] :: what to COPY for files (default is /COPY:DAT).



(copyflags : D=Data, A=Attributes, T=Timestamps).



(S=Security=NTFS ACLs, O=Owner info, U=aUditing info).







share|improve this answer












this option should solve the problem and will copy the attributes required.
/COPY:DATSO



Here is more description on this




/COPY:copyflag[s] :: what to COPY for files (default is /COPY:DAT).



(copyflags : D=Data, A=Attributes, T=Timestamps).



(S=Security=NTFS ACLs, O=Owner info, U=aUditing info).








share|improve this answer












share|improve this answer



share|improve this answer










answered May 19 '14 at 11:16









Baljeetsingh

1777




1777












  • It's the 'U' option which causes the failure
    – smirkingman
    13 hours ago


















  • It's the 'U' option which causes the failure
    – smirkingman
    13 hours ago
















It's the 'U' option which causes the failure
– smirkingman
13 hours ago




It's the 'U' option which causes the failure
– smirkingman
13 hours ago


















 

draft saved


draft discarded



















































 


draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f734095%2frobocopy-error-1314-0x00000522-on-windows-7-home-premium%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Plaza Victoria

In PowerPoint, is there a keyboard shortcut for bulleted / numbered list?

How to put 3 figures in Latex with 2 figures side by side and 1 below these side by side images but in...