Guest Louis Posted October 6, 2007 Posted October 6, 2007 Hi, I would like to copy one folder and all it's content from one server to another one while conserving all ntfs security with robocopy. I tried this but it does not copy the parent folder itself, it just copy the content. robocopy source destination /s /sec Thanks
Guest Lanwench [MVP - Exchange] Posted October 6, 2007 Posted October 6, 2007 Re: Robocopy Louis <llancup@compugen.com> wrote: > Hi, > > I would like to copy one folder and all it's content from one server > to another one > while conserving all ntfs security with robocopy. > > I tried this but it does not copy the parent folder itself, it just > copy the content. > > robocopy source destination /s /sec > > Thanks Try robocopy d:\folder\subfolder\ x:\folder\subfolder\ /e /r:1 /w:1 /sec Even if subfolder doesn't exist in the target, it should be created.
Recommended Posts