This property specifies whether Content Deployment should try to send locked files to each destination server defined for the project. If True, do not try to send locked files; if False, try to send locked files.
Syntax
ReplicationClient.SkipLockedFiles
Remarks
You must have Site Server Publishing administrator privileges on the server to call this method.
Example
The following example tries to send any locked files to Project1's destination servers.
Option Explicit
On Error Resume Next
dim Client
set Client = CreateObject("CrsApi.ReplicationClient")
Client.Initialize("Project1")
Client.SkipLockedFiles = False
'Release Client object
set Client = Nothing
See Also
ReplicationClient.DeleteFile, ReplicationClient.GetExtendedErrorInfo, ReplicationProject.EnumDestination