This method starts Content Deployment.
Syntax
ReplicationServer.Start
Remarks
You must have Site Server Publishing administrator privileges on the server to call this method.
To start Content Deployment on a machine other than the local machine, use the ReplicationServer.Initialize method to set the machine name, call the ReplicationServer.Start method to start Content Deployment, and then call the ReplicationServer.Initialize method again before using the ReplicationServer object.
Example
The following example starts the local Content Deployment server.
Option Explicit
On Error Resume Next
dim ReplServer
set ReplServer = CreateObject("CrsApi.ReplicationServer")
ReplServer.Initialize("")
...
ReplServer.Start
'Release Server object
set ReplServer = Nothing
See Also