Get-ADReplicationPartnerMetadata
Synopsis
Description
Parameters
-AuthType
Specifies the authentication method to use. Possible values for this parameter include:
Required? false
Position? named
Default value Microsoft.ActiveDirectory.Management.AuthType.Negotiate
Accept pipeline input? false
Accept wildcard characters? false
-Credential <PSCredential>
Specifies a user account that has permission to perform this action. The default is the current user.
Required? false
Position? named
Default value
Accept pipeline input? false
Accept wildcard characters? false
-EnumerationServer <String>
Specifies the Active Directory Domain Services instance to connect to, by providing one of the following values for a corresponding domain name or directory server. The service may be any of the following: Active Directory Lightweight Domain Services, Active Directory Domain Services or Active Directory Snapshot instance.
Required? false
Position? named
Default value
Accept pipeline input? false
Accept wildcard characters? false
-Filter <String>
Specifies a filter in the provider's format or language. The value of this parameter qualifies the Path parameter. The syntax of the filter, including the use of wildcards, depends on the provider. Filters are more efficient than other parameters, because the provider applies them when retrieving the objects, rather than having Windows PowerShell filter the objects after they are retrieved.
Required? false
Position? named
Default value
Accept pipeline input? false
Accept wildcard characters? false
-Partition <String[]>
Specifies the distinguished name of an Active Directory partition. The distinguished name must be one of the naming contexts on the current directory server. The cmdlet searches this partition to find the object defined by the Identity parameter.
Required? false
Position? 3
Default value DefaultNC; Provider: Default is to use the Partition that you are currently in. Else, use DefaultNC (IE: If you are in the RootDSE)
Accept pipeline input? false
Accept wildcard characters? false
-PartnerType <ADPartnerType>
An enumeration of the replication types returned by this cmdlet. The following are the allowable values for this parameter: Inbound, Outbound, Both.
Required? false
Position? 4
Default value Inbound
Accept pipeline input? false
Accept wildcard characters? false
-Scope <ADScopeType>
Specifies the scope type for the Target parameter when used as input. The allowable values for this parameter are:
Required? true
Position? 2
Default value None
Accept pipeline input? false
Accept wildcard characters? false
-Target <Object[]>
Specifies the target for returning replication partner metadata as either one or more domain controllers, sites, domains, or forests. If multiple values for the target are to be specified, they need to be separated by commas. This parameter will return results for all the domain controllers specified or for part of the specified container.
Required? true
Position? 1
Default value DCLocator; Provider: -Server of the connected drive
Accept pipeline input? True (ByValue)
Accept wildcard characters? false
Syntax
Get-ADReplicationPartnerMetadata [-AuthType <ADAuthType>] [-Credential <PSCredential>] [-EnumerationServer <String>] [-Filter <String>] [[-Partition] <String[]>] [[-PartnerType] <ADPartnerType>] [-Target] <Object[]> [<CommonParameters>]
Get-ADReplicationPartnerMetadata [-AuthType <ADAuthType>] [-Credential <PSCredential>] [-EnumerationServer <String>] [-Filter <String>] [[-Partition] <String[]>] [[-PartnerType] <ADPartnerType>] [-Scope] <ADScopeType> [[-Target] <Object[]>] [<CommonParameters>]
The default behavior for this cmdlet is to prompt for server identity. Other tools that have been made available in prior releases of Windows Server to manage replication partnerships include Active Directory Sites and Services and the Repadmin.exe tool. If this cmdlet is aliased, it should use “ReplSummary” as the alias name value.
C:\PS>Get-ADReplicationPartnerMetadata -Target Delhi-DC01
Get the replication metadata between Delhi-DC01 and its inbound partners for the default partition only.
C:\PS>Get-ADReplicationPartnerMetadata -Target Delhi-DC01 -PartnerType Inbound
Get the replication metadata between Delhi-DC01 and its inbound partners for the default partition only (same as above).
C:\PS>Get-ADReplicationPartnerMetadata -Target Delhi-DC01, Delhi-DC02 -PartnerType Both -Partition Schema
Get the replication metadata between Delhi-DC01, Delhi-DC02 and their respective partners only (both inbound and outbound) for the schema partition.
C:\PS>Get-ADReplicationPartnerMetadata -Target Mumbai-Scope Site -Partition *
Get the replication metadata for all the inbound partners of all the domain controllers within the ‘Mumbai’ site for all hosted partitions.
C:\PS>Get-ADReplicationPartnerMetadata -Target “Delhi.TOSSoluiton.com” -Scope Domain
Get the replication metadata for all the domain controllers that are inbound partners for the default partition in the domain ‘Delhi.TOSSoluiton.com’.
C:\PS>Get-ADReplicationPartnerMetadata -Target “Delhi.TOSSoluiton.com” -Scope Forest -Partition Configuration
Get the replication metadata for all the domain controllers that are inbound partners for the configuration partition in the forest ‘Delhi.TOSSoluiton.com’.
Get-Command Get-ADReplicationPartnerMetadata