This method stops the Content Deployment service.
Syntax
ReplicationServer.Stop
Remarks
You must have Site Server Publishing administrator privileges on the server to call this method.
Example
The following example stops the Content Deployment service.
Option Explicit
On Error Resume Next
dim ReplServer
set ReplServer = CreateObject("CrsApi.ReplicationServer")
ReplServer.Initialize("")
...
ReplServer.Stop
'Release Server object
set ReplServer = Nothing
See Also