IDomainServerManagement Method: SynchronizeBDCCompletely

SynchronizeBDCCompletely
(
 BDCName as String
);

Parameters

[in] String BDCName
Name of the BDC to be synchronized.

Description
Sends a request to the Backup Domain Controller (BDC) to fully synchronize its database with that of the Primary Domain Controller (PDC). This synchronization updates all the databases (SAM, LSA and BUILTIN) irrespective of the changes.

To check if the sychronization has been successful, look at the system log of the Event Log on the PDC and BDCs

Example

Dim ServerMgmt As IDomainServerManagement
'Get the IDomainServerManagement interface for domain object
Set ServerMgmt = GetObject ("NTDS://DomainName")
'Fully synchronize the BDC "BDC Name"
ServerMgmt.SynchronizeBDCCompletely"BDC Name"

 

See Also