Wow, what is this? I currently use robocopy in a .bat file to do my syncing. Windows Live Sync created way too many duplicates. Manually copying folders was not going to work, so I developed a rather crude solution.
I share my music collection with a roomate. We have different podcasts so I exclude that folder. We both sync to a centralized computer, replacing everything there. Then the other user would pull from the server with another script.
Each time a change is made, a "to" script must be run. The other user must run a "from" script to sync that change.
To Script:
robocopy D:\Users\Trix\Music \\win-server\All\Music /MIR /R:0 /V /FP /XD "D:\Users\Trix\Music\Zune\Podcasts" /LOG:\\gambon\All\b-music.log /TEE
From Script:
robocopy \\gambon\All\Music D:\Users\Trix\Music /MIR /R:0 /V /FP /LOG:\\win-server\All\b-music.log /TEE
Could sync toy be a simplified solution?