Get-ADReplicationSite

Get-ADReplicationSite is accessible with the help of addsadministration module. To install addsadministration on your system please refer to this link.

Synopsis

Returns a specific Active Directory replication site or a set of replication site objects based on a specified filter.

Description

The Get-ADReplicationSite cmdlet returns a specific Active Directory replication site or a set of replication site objects based on a specified filter. Sites are used in Active Directory to either enable clients to discover network resources (published shares, domain controllers) close to the physical location of a client computer or to reduce network traffic over wide area network (WAN) links. Sites can also be used to optimize replication between domain controllers.

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 the user account credentials to use to perform this task. The default credentials are the credentials of the currently logged on user unless the cmdlet is run from an Active Directory PowerShell provider drive. If the cmdlet is run from such a provider drive, the account associated with the drive is the default.

    Required?                    false
    Position?                    named
    Default value                
    Accept pipeline input?       false
    Accept wildcard characters?  false

-Filter <String>
    Specifies a query string that retrieves Active Directory objects. This string uses the PowerShell Expression Language syntax. The PowerShell Expression Language syntax provides rich type-conversion support for value types received by the Filter parameter. The syntax uses an in-order representation, which means that the operator is placed between the operand and the value. For more information about the Filter parameter, see about_ActiveDirectory_Filter.

    Required?                    true
    Position?                    named
    Default value                
    Accept pipeline input?       false
    Accept wildcard characters?  false

-Identity <ADReplicationSite>
    Specifies an Active Directory object by providing one of the following property values. The identifier in parentheses is the LDAP display name for the attribute.

    Required?                    false
    Position?                    1
    Default value                All Sites (Filter *)
    Accept pipeline input?       True (ByValue)
    Accept wildcard characters?  false

-Properties <String[]>
    Specifies the properties of the output object to retrieve from the server. Use this parameter to retrieve properties that are not included in the default set.

    Required?                    false
    Position?                    named
    Default value                
    Accept pipeline input?       false
    Accept wildcard characters?  false

-Server <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

Syntax

Get-ADReplicationSite [-AuthType <ADAuthType>] [-Credential <PSCredential>] [[-Identity] <ADReplicationSite>] [-Properties <String[]>] [-Server <String>] [<CommonParameters>]

Get-ADReplicationSite [-AuthType <ADAuthType>] [-Credential <PSCredential>] -Filter <String> [-Properties <String[]>] [-Server <String>] [<CommonParameters>]

————————– EXAMPLE 1 ————————–
C:\PS>Get-ADReplicationSite -Filter *
Get all the sites.

————————– EXAMPLE 2 ————————–
C:\PS>Get- ADReplicationSite -Properties * -Filter {WindowsServer2003KCCSiteLinkBridgingEnabled -eq $TRUE}
Get all sites that have the WindowsServer2003KCCBehaviorEnabled flag turned on. (The –Properties parameter must be set because the WindowsServer2003KCCSiteLinkBridgingEnabled property is not retrieved by default.)

————————– EXAMPLE 3 ————————–
C:\PS>Get- ADReplicationSite Mumbai
Get the site with name ‘Mumbai’.

————————– EXAMPLE 4 ————————–
C:\PS>Get- ADReplicationSite Mumbai -Properties AutomaticInterSiteTopologyGenerationEnabled
Get the AutomaticInterSiteTopologyGenerationEnabled property of the site with name ‘Mumbai’.

You can check the Version, CommandType and Source of this cmdlet by giving below command.

Get-Command Get-ADReplicationSite

Get-Command Get-ADReplicationSite powershell script command cmdlet

You can also read about
. New-ADReplicationSite
. Remove-ADReplicationSite
. Set-ADReplicationSite

To know more PowerShell cmdlets(Commands) on addsadministration (Active Directory) click here

Click on this Link for an Single place where you get all the PowerShell cmdlet sorted based on the modules.

You can also refer other blogs on PowerShell at link

You can also refer other blogs on Microsoft at link

And also if you required any technology you want to learn, let us know below we will publish them in our site http://tossolution.com/

Like our page in Facebook and follow us for New technical information.

References are taken from Microsoft

Leave a Reply

Your email address will not be published. Required fields are marked *