Link to home
Start Free TrialLog in
Avatar of mcooper13
mcooper13Flag for United States of America

asked on

Robocopy

I am attempting to copy a folder and all of its contents from one server to a virtual server  located on a SAN.

Using a robocopy script of :

ROBOCOPY "\\2003_SERVER\D$\Imagestorage" "\\2008_SERVERB\D$\Imagestorage" /s /e /copyall /purge /timfix /r:0 /log:C:\Users\otto.domain\Desktop\RoboCopy\ImageStorage\LogImagestorage.txt

Results in the following:

ERROR 5 (0x00000005) Getting File System Type of Source \\PRINTSERVER\D$\Imagestorage\
Access is denied.

   Source - \\PRINTSERVER\D$\Imagestorage\
     Dest : \\PRINTSERVERB\D$\Imagestorage\

    Files : *.*
          
  Options : *.* /S /E /COPYALL /TIMFIX /PURGE /R:0 /W:30

------------------------------------------------------------------------------

NOTE : NTFS Security may not be copied - Source may not be NTFS.

ERROR 5 (0x00000005) Accessing Source Directory \\PRINTSERVER\D$\Imagestorage\
Access is denied.

Need some help getting past this error. TIA
ASKER CERTIFIED SOLUTION
Avatar of Haresh Nikumbh
Haresh Nikumbh
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of mcooper13

ASKER

I discovered that this was not as complicated as I was making it out to be. It was a simple permisisons issue so I'm up an drunning. Thanks to the experts for their comments. Much appreciated.