Previous in Contents Next in Contents

Continue Method

This method restarts the Content Deployment service after a pause request.

Syntax

ReplicationServer.Continue

Remarks

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

Example

The following example pauses the server and then restarts it.

Option Explicit 
On Error Resume Next 

dim ReplServer
set ReplServer = CreateObject("CrsApi.ReplicationServer")
ReplServer.Initialize("")

ReplServer.Pause
...
ReplServer.Continue

'Release Server object
set ReplServer = Nothing

See Also

Pause, Start, Stop


© 1997-2000 Microsoft Corporation. All rights reserved.