Stop Method

This method stops Content Deployment.

Syntax

ReplicationServer.Stop

Remarks

You must have Site Server Publishing administrator privileges on the server to call this method.

Example

The following example stops Content Deployment.

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

Continue, Pause, Start


© 1997-1998 Microsoft Corporation. All rights reserved.