Share via


Get-DfsrConnectionSchedule

Get-DfsrConnectionSchedule

Gets a connection schedule between members of a replication group.

Sintaxe

Parameter Set: Default
Get-DfsrConnectionSchedule [[-GroupName] <String[]> ] [-SourceComputerName] <String> [-DestinationComputerName] <String> [[-DomainName] <String> ] [ <CommonParameters>]

Descrição detalhada

The Get-DfsrConnectionSchedule cmdlet gets a connection schedule.

DFS Replication DFS Replication are the logical partnerships between members in a replication group. The DFS Replication service uses the Remote Procedure Call (RPC) protocol to communicate between servers. DFS Replication schedules control the availability and bandwidth usage of replication.

Parâmetros

-DestinationComputerName<String>

Specifies the name of the receiving computer. A receiving computer is also called an inbound or downstream computer.

Aliases

ReceivingMember,RMem

Necessário?

true

Posição?

3

Valor padrão

nenhuma

Aceitar entrada do pipeline?

True (ByPropertyName)

Aceitar caracteres curinga?

false

-DomainName<String>

Specifies the NetBIOS name or fully qualified domain name (FQDN) for the Active Directory Domain Service (AD DS) domain that contains the replication group. If you do not specify this parameter, the cmdlet uses the domain of the current user.

Aliases

nenhuma

Necessário?

false

Posição?

101

Valor padrão

[Current Domain]

Aceitar entrada do pipeline?

True (ByPropertyName)

Aceitar caracteres curinga?

false

-GroupName<String[]>

Specifies an array of names of replication groups. You can use a comma separated list and the wildcard character (*).

Aliases

RG,RgName

Necessário?

false

Posição?

1

Valor padrão

nenhuma

Aceitar entrada do pipeline?

True (ByValue, ByPropertyName)

Aceitar caracteres curinga?

true

-SourceComputerName<String>

Specifies the name of the sending computer. A sending computer is also called an outbound or upstream computer.

Aliases

SendingMember,SMem

Necessário?

true

Posição?

2

Valor padrão

nenhuma

Aceitar entrada do pipeline?

True (ByPropertyName)

Aceitar caracteres curinga?

false

<CommonParameters>

Esse cmdlet dá suporte a parâmetros comuns: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer e -OutVariable. Para obter mais informações, consulte about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).

Entradas

O tipo de entrada é o tipo dos objetos que você pode canalizar para o cmdlet.

  • Microsoft.DistributedFileSystemReplication.DfsReplicationGroup

Saídas

O tipo de saída é o tipo de objeto emitido pelo cmdlet.

  • Microsoft.DistributedFileSystemReplication.DfsrConnectionSchedule, string

Exemplos

Example 1: Get a connection schedule

This command gets the connection-based replication schedule from the server named SRV02 to the server named SRV01. Because the administrator has not specified a custom schedule for the connection, the connection inherits the schedule settings from the replication group.

PS C:\> Get-DfsrConnectionSchedule -GroupName "RG24" -SourceComputerName "SRV02" -DestinationComputerName "SRV01"

Example 2: Get a custom connection schedule

This command gets the connection-based replication schedule from the server named SRV01 to the server named SRV02. The cmdlet gets a custom connection schedule that blocks replication from 9 A.M. to 5 P.M. Monday through Friday (represented by zeros in the output), and allows full bandwidth replication for all remaining time blocks.

PS C:\> Get-DfsrConnectionSchedule -GroupName "RG24" -SourceComputerName "SRV01" -DestinationComputerName "SRV02"

Tópicos relacionados

Set-DfsrConnectionSchedule