I'm using the robocopy tool in my migration of data from Novell to a Windows NAS appliance. I've had no problems performing the original bulk data copies from source (Novell File servers) to destination (NetAPP NAS). Here is a clip of the command syntax I used for the original copy. Please note, I simply mapped a drive to letter I: which was the Novell source file server. From there, I launched the following .bat file:
Echo "Processing Volume "DATA"
robocopy I: \\nasappliance\novellservername\DATA /MIR /E /V /W:10 /R:1 /NP /LOG+:c:\migrate\novellservername_DATA.log
map del I:
CLS
Now, the problem is I have is under that "data" folder, there was a folder called "users" which consisted of all users home directories. We are placing the home dir's on a seperate destination, so after the original builk copy, we moved the "users" folder and all subfolders to a different final destination. This leads me to my problem. I know need to set up a .bat file to support "delta" or "differential" copies which I'll need to run every night until the scheduled cutover date. Typically, I would simply run the existing .bat file but I DO NOT want to copy the \\novellservername\data\USERS folder or it's subfolders during the delta.
I know there is an /XD switch or something like that. Can someone help me and provide the exact syntax to support delta copies but not include that USERS folder ?
Thanks
Echo "Processing Volume "DATA"
robocopy I: \\nasappliance\novellservername\DATA /MIR /E /V /W:10 /R:1 /NP /LOG+:c:\migrate\novellservername_DATA.log
map del I:
CLS
Now, the problem is I have is under that "data" folder, there was a folder called "users" which consisted of all users home directories. We are placing the home dir's on a seperate destination, so after the original builk copy, we moved the "users" folder and all subfolders to a different final destination. This leads me to my problem. I know need to set up a .bat file to support "delta" or "differential" copies which I'll need to run every night until the scheduled cutover date. Typically, I would simply run the existing .bat file but I DO NOT want to copy the \\novellservername\data\USERS folder or it's subfolders during the delta.
I know there is an /XD switch or something like that. Can someone help me and provide the exact syntax to support delta copies but not include that USERS folder ?
Thanks