File Server :: Transfer to new server with permission
Use robocopy.exe (if less than windows7 then copy robocopy.exe to c:\windows\system32)
# Folder and Structure
robocopy "\\server\path" "d:\path" /E /lev:2 /E /SEC /XF *
# Copy all data in folder
robocopy "\\server\path" "d:\path" /E /COPYALL /SEC /PURGE
# Folder and Structure
robocopy "\\server\path" "d:\path" /E /lev:2 /E /SEC /XF *
# Copy all data in folder
robocopy "\\server\path" "d:\path" /E /COPYALL /SEC /PURGE
Comments
Post a Comment