Connect a new Client to Server. Stop Echo?

General question about TMS ECHO. I have a Server DB and Client DB's. The data exchange between the clients and the server runs via TMSEcho. Works perfectly and almost promptly. Now the question: A new client will be added. In order to get to the same data status, I copy the data from the server to the new client. Can TMSEcho be active during this copy operation, or should Echo between the server and the new client be stopped during copying?

Simple code Snipped (Copy function):
localconn.Connect;
fLocalManager:=TObjectManager.Create(localConn);

serverConn:=serverAureliusConnection.CreateConnection;
serverConn.Connect;
fServerManager:=TObjectManager.Create(serverConn);
try
pl:=fServerManager.Find<Tapp_user>.list;
for app_user in pl do
begin
fLocalManager.Replicate(app_user);
end;
pl1:=fServerManager.Find<Tapp_assembler>.list;
for app_assembler in pl1 do
begin
fLocalManager.Replicate(app_assembler);
end;
finally
serverConn.Disconnect;
localConn.Disconnect;
end;

You should only enable Echo after copying everything, otherwise it will log the changes and then try to synchronize the data back to where it came from.