a service is running on many servers and on some machines I need another set of plugins than on other machines for this service.
On all those hosts there is already the folder with some plugin files needed for that host. Now I need to update those from one single source.
It is important that robocopy only copies the file from the source that are already in the folder on the server, and not any additional files.
I thought the /XX flag would do this, but it doesn't work for me.
This is the command I used:
robocopy <src> <dst> /E /XX /NP
What command would be the right one for me?