i am using windows 2003 server and windows 7 as client.

i have one folder in drive D i want to SYNC that folder with server.

how can i write login script for that?

Thanks

link|improve this question

41% accept rate
feedback

migrated from stackoverflow.com Feb 26 '10 at 15:59

This question came from our site for professional and enthusiast programmers.

1 Answer

The robocopy command is bundled with Windows 7 and allows you sync a folder to another destination. Try adding robocopy to your login script like this:

robocopy d:\path\to\source s:\path\to\destination /MIR /Z

The /MIR option ensures that the destination folder always reflects the source folder.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.