From 33eeea421b87f39f8e3e4c2268ba2f00d39f8f4a Mon Sep 17 00:00:00 2001 From: Borislav Velkov Date: Tue, 24 Sep 2019 10:46:01 +0300 Subject: [PATCH 1/4] Add parameter description in 2012 version Added parameter description in 2012 version and adjusted formatting in all versions so it is uniform. --- ...maincontrollerpasswordreplicationpolicy.md | 5 +- ...mainControllerPasswordReplicationPolicy.md | 119 +++++++++++++----- ...mainControllerPasswordReplicationPolicy.md | 38 +++--- 3 files changed, 109 insertions(+), 53 deletions(-) diff --git a/docset/windows/addsadministration/get-addomaincontrollerpasswordreplicationpolicy.md b/docset/windows/addsadministration/get-addomaincontrollerpasswordreplicationpolicy.md index 4ecc0262bf..18fffaa2c0 100644 --- a/docset/windows/addsadministration/get-addomaincontrollerpasswordreplicationpolicy.md +++ b/docset/windows/addsadministration/get-addomaincontrollerpasswordreplicationpolicy.md @@ -62,8 +62,9 @@ This command gets from an RODC domain controller password replication policy the ### Example 2: Get the password replication policy allowed list from all RODCs in the domain ``` -PS C:\> Get-ADDomainController -Filter {IsReadOnly -eq $True} | Get-ADDomainControllerPasswordReplicationPolicy -Allowed -DistinguishedName : CN=Allowed RODC Password Replication Group,CN=Users,DC=User01,DC=com +C:\PS>Get-ADDomainController -Filter {IsReadOnly -eq $true} | Get-ADDomainControllerPasswordReplicationPolicy -Allowed + +DistinguishedName : CN=Allowed RODC Password Replication Group,CN=Users,DC=Fabrikam,DC=com Name : Allowed RODC Password Replication Group ObjectClass : group ObjectGUID : 239b0470-7f49-472d-8fcb-4911e90b2c5e diff --git a/docset/winserver2012-ps/activedirectory/Get-ADDomainControllerPasswordReplicationPolicy.md b/docset/winserver2012-ps/activedirectory/Get-ADDomainControllerPasswordReplicationPolicy.md index 60460be930..76ac0c90a5 100644 --- a/docset/winserver2012-ps/activedirectory/Get-ADDomainControllerPasswordReplicationPolicy.md +++ b/docset/winserver2012-ps/activedirectory/Get-ADDomainControllerPasswordReplicationPolicy.md @@ -29,33 +29,29 @@ Get-ADDomainControllerPasswordReplicationPolicy [-AuthType ] [-Crede ``` ## DESCRIPTION -The Get-ADDomainControllerPasswordReplicationPolicy gets the users, computers, service accounts and groups that are members of the applied list or denied list for a read-only domain controller's (RODC) password replication policy. -To get the members of the applied list, specify the AppliedList parameter. -To get the members of the denied list, specify the DeniedList parameter. +The **Get-ADDomainControllerPasswordReplicationPolicy** cmdlet gets the users, computers, service accounts and groups that are members of the applied list or denied list for a read-only domain controller's (RODC) password replication policy. +To get the members of the applied list, specify the *AppliedList* parameter. +To get the members of the denied list, specify the *DeniedList* parameter. -The Identity parameter specifies the RODC that uses the allowed and denied lists to apply the password replication policy. +The *Identity* parameter specifies the RODC that uses the allowed and denied lists to apply the password replication policy. You can identify a domain controller by its GUID, IPV4Address, IPV6Address, or DNS host name. -You can also identify a domain controller by the name of the server object that represents the domain controller, the Distinguished Name (DN) of the NTDS settings object or the server object, the GUID of the NTDS settings object or the server object under the configuration partition, or the DN of the computer object that represents the domain controller. +You can also identify a domain controller by the name of the server object that represents the domain controller, the distinguished name of the NTDS settings object or the server object, the GUID of the NTDS settings object or the server object under the configuration partition, or the distinguished name of the computer object that represents the domain controller. -You can also set the Identity parameter to a domain controller object variable, such as $\, or pass a domain controller object through the pipeline to the Identity parameter. -For example, you can use the Get-ADDomainController cmdlet to retrieve a domain controller object and then pass the object through the pipeline to the Get-ADDomainControllerPasswordReplicationPolicy cmdlet. +You can also set the *Identity* parameter to a domain controller object variable, such as `$`, or pass a domain controller object through the pipeline operator to the *Identity* parameter. +For example, you can use the **Get-ADDomainController** cmdlet to retrieve a domain controller object and then pass the object through the pipeline operator to the **Get-ADDomainControllerPasswordReplicationPolicy** cmdlet. If you specify a writeable domain controller for this cmdlet, the cmdlet returns a non-terminating error. ## EXAMPLES -### -------------------------- EXAMPLE 1 -------------------------- +### Example 1: gets from an RODC domain controller password replication policy the allowed accounts showing the name and object class of each ``` C:\PS>Get-ADDomainControllerPasswordReplicationPolicy -Identity "FABRIKAM-RODC1" -Allowed | ft Name,ObjectClass ``` -Description +This command gets from an RODC domain controller password replication policy the allowed accounts showing the name and object class of each. ------------ - -Get from an RODC domain controller password replication policy the allowed accounts showing the name and object class of each - -### -------------------------- EXAMPLE 2 -------------------------- +### Example 2: Get the password replication policy allowed list from all RODCs in the domain ``` C:\PS>Get-ADDomainController -Filter {IsReadOnly -eq $true} | Get-ADDomainControllerPasswordReplicationPolicy -Allowed @@ -67,16 +63,12 @@ SamAccountName : Allowed RODC Password Replication Group SID : S-1-5-21-41432690-3719764436-1984117282-571 ``` -Description - ------------ - -Get the password replication policy allowed lists from all RODCs in the domain. +This command gets the password replication policy allowed lists from all RODCs in the domain. ## PARAMETERS ### -Allowed -{{Fill Allowed Description}} +Specifies a search for accounts that have been authenticated by a read-only domain controller. ```yaml Type: SwitchParameter @@ -91,7 +83,15 @@ Accept wildcard characters: False ``` ### -AuthType -{{Fill AuthType Description}} +Specifies the authentication method to use. +The acceptable values for this parameter are: + +- Negotiate or 0 +- Basic or 1 + +The default authentication method is Negotiate. + +A Secure Sockets Layer (SSL) connection is required for the Basic authentication method. ```yaml Type: ADAuthType @@ -107,7 +107,21 @@ Accept wildcard characters: False ``` ### -Credential -{{Fill Credential Description}} +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 module for Windows PowerShell provider drive. +If the cmdlet is run from such a provider drive, the account associated with the drive is the default. + +To specify this parameter, you can type a user name, such as User1 or Domain01\User01 or you can specify a **PSCredential** object. +If you specify a user name for this parameter, the cmdlet prompts for a password. + +You can also create a **PSCredential** object by using a script or by using the **Get-Credential** cmdlet. +You can then set the *Credential* parameter to the **PSCredential** object. + +If the acting credentials do not have directory-level permission to perform the task, Active Directory module for Windows PowerShell returns a terminating error. + +Specifies the credentials for the security context under which the task is performed. +If this security context doesn't have directory level permissions to perform the task, then an error is returned by the directory. +If running under the context of an Active Directory module for Windows PowerShell provider drive, the credentials information associated with the drive is used as the default value; otherwise, the currently logged on user security context is used. ```yaml Type: PSCredential @@ -122,7 +136,14 @@ Accept wildcard characters: False ``` ### -Denied -{{Fill Denied Description}} +Specifies the users, computers, groups or other accounts to add to the list of accounts that are denied the right to replicate their passwords to this read-only domain controller (RODC). +You can specify more than one value by using a comma-separated list. +The acceptable values for this parameter are: + +- A distinguished name +- A GUID (objectGUID) +- A security identifier (objectSid) +- A SAM account name (sAMAccountName) ```yaml Type: SwitchParameter @@ -137,7 +158,25 @@ Accept wildcard characters: False ``` ### -Identity -{{Fill Identity Description}} +Specifies an Active Directory domain controller object by providing one of the following values. +The identifier in parentheses is the Lightweight Directory Access Protocol (LDAP) display name for the attribute. +The acceptable values for this parameter are: + +- A GUID (objectGUID) +- An IPV4Address +- A Global IPV6Address +- A DNS Host Name (dNSHostName) +- A name of the server object +- A Distinguished Name of the NTDS Settings object +- A distinguished name of the server object that represents the domain controller +- A GUID of NTDS settings object under the configuration partition +- A GUID of server object under the configuration partition +- A distinguished name of the computer object that represents the domain controller. + +The cmdlet searches the default naming context or partition to find the object. +If two or more objects are found, the cmdlet returns a non-terminating error. + +This parameter can also get this object through the pipeline or you can set this parameter to an object instance. ```yaml Type: ADDomainController @@ -152,7 +191,27 @@ Accept wildcard characters: False ``` ### -Server -{{Fill Server Description}} +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. + +Specify the Active Directory Domain Services instance in one of the following ways: + +Domain name values: + +- Fully qualified domain name +- NetBIOS name + +Directory server values: + +- Fully qualified directory server name +- NetBIOS name +- Fully qualified directory server name and port + +The default value for this parameter is determined by one of the following methods in the order that they are listed: + +- By using the *Server* value from objects passed through the pipeline +- By using the server information associated with the Active Directory Domain Services Windows PowerShell provider drive, when the cmdlet runs in that drive +- By using the domain of the computer running Windows PowerShell ```yaml Type: String @@ -167,12 +226,12 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### Microsoft.ActiveDirectory.Management.ADDomainController -A domain controller object is received by the Identity parameter. +A domain controller object is received by the *Identity* parameter. ## OUTPUTS @@ -181,9 +240,8 @@ Returns one or more objects that represent the users, computers, service account The list returned depends on the parameters specified. ## NOTES -* This cmdlet does not work with AD LDS. - - This cmdlet does not work when targeting a snapshot using the Server parameter. +* This cmdlet does not work with Active Directory Lightweight Directory Services. +* This cmdlet does not work when targeting a snapshot using the Server parameter.. ## RELATED LINKS @@ -191,3 +249,4 @@ The list returned depends on the parameters specified. [Remove-ADDomainControllerPasswordReplicationPolicy](./Remove-ADDomainControllerPasswordReplicationPolicy.md) +[AD DS Administration Cmdlets in Windows PowerShell](./ActiveDirectory.md) \ No newline at end of file diff --git a/docset/winserver2012r2-ps/addsadministration/Get-ADDomainControllerPasswordReplicationPolicy.md b/docset/winserver2012r2-ps/addsadministration/Get-ADDomainControllerPasswordReplicationPolicy.md index 3d580aa771..780ca1b7a1 100644 --- a/docset/winserver2012r2-ps/addsadministration/Get-ADDomainControllerPasswordReplicationPolicy.md +++ b/docset/winserver2012r2-ps/addsadministration/Get-ADDomainControllerPasswordReplicationPolicy.md @@ -38,15 +38,15 @@ Get-ADDomainControllerPasswordReplicationPolicy [-AuthType ] [-Crede ## DESCRIPTION The **Get-ADDomainControllerPasswordReplicationPolicy** cmdlet gets the users, computers, service accounts and groups that are members of the applied list or denied list for a read-only domain controller's (RODC) password replication policy. -To get the members of the applied list, specify the **AppliedList** parameter. -To get the members of the denied list, specify the **DeniedList** parameter. +To get the members of the applied list, specify the *AppliedList* parameter. +To get the members of the denied list, specify the *DeniedList* parameter. -The **Identity** parameter specifies the RODC that uses the allowed and denied lists to apply the password replication policy. +The *Identity* parameter specifies the RODC that uses the allowed and denied lists to apply the password replication policy. You can identify a domain controller by its GUID, IPV4Address, IPV6Address, or DNS host name. You can also identify a domain controller by the name of the server object that represents the domain controller, the distinguished name of the NTDS settings object or the server object, the GUID of the NTDS settings object or the server object under the configuration partition, or the distinguished name of the computer object that represents the domain controller. -You can also set the **Identity** parameter to a domain controller object variable, such as **$\**, or pass a domain controller object through the pipeline operator to the **Identity** parameter. -For example, you can use the Get-ADDomainController cmdlet to retrieve a domain controller object and then pass the object through the pipeline operator to the **Get-ADDomainControllerPasswordReplicationPolicy** cmdlet. +You can also set the *Identity* parameter to a domain controller object variable, such as `$`, or pass a domain controller object through the pipeline operator to the *Identity* parameter. +For example, you can use the **Get-ADDomainController** cmdlet to retrieve a domain controller object and then pass the object through the pipeline operator to the **Get-ADDomainControllerPasswordReplicationPolicy** cmdlet. If you specify a writeable domain controller for this cmdlet, the cmdlet returns a non-terminating error. @@ -61,17 +61,13 @@ This command gets from an RODC domain controller password replication policy the ### Example 2: Get the password replication policy allowed list from all RODCs in the domain ``` -PS C:\> Get-ADDomainController -Filter {IsReadOnly -eq $true} | Get-ADDomainControllerPasswordReplicationPolicy -Allowed -DistinguishedName : CN=Allowed RODC Password Replication Group,CN=Users,DC=User01,DC=com +C:\PS>Get-ADDomainController -Filter {IsReadOnly -eq $true} | Get-ADDomainControllerPasswordReplicationPolicy -Allowed +DistinguishedName : CN=Allowed RODC Password Replication Group,CN=Users,DC=Fabrikam,DC=com Name : Allowed RODC Password Replication Group - ObjectClass : group - ObjectGUID : 239b0470-7f49-472d-8fcb-4911e90b2c5e - SamAccountName : Allowed RODC Password Replication Group - SID : S-1-5-21-41432690-3719764436-1984117282-571 ``` @@ -126,8 +122,8 @@ If the cmdlet is run from such a provider drive, the account associated with the To specify this parameter, you can type a user name, such as User1 or Domain01\User01 or you can specify a **PSCredential** object. If you specify a user name for this parameter, the cmdlet prompts for a password. -You can also create a **PSCredential** object by using a script or by using the Get-Credentialhttp://go.microsoft.com/fwlink/?LinkID=293936 cmdlet. -You can then set the **Credential** parameter to the **PSCredential** object. +You can also create a **PSCredential** object by using a script or by using the **Get-Credential** cmdlet. +You can then set the *Credential* parameter to the **PSCredential** object. If the acting credentials do not have directory-level permission to perform the task, Active Directory module for Windows PowerShell returns a terminating error. @@ -204,16 +200,16 @@ Accept wildcard characters: False ### -Server 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. +The service may be any of the following: Active Directory Lightweight Domain Services, Active Directory Domain Services or Active Directory snapshot instance. -Specify the Active Directory Domain Services instance in one of the following ways: +Specify the Active Directory Domain Services instance in one of the following ways: - Domain name values: +Domain name values: - Fully qualified domain name - NetBIOS name - Directory server values: +Directory server values: - Fully qualified directory server name - NetBIOS name @@ -221,8 +217,8 @@ Specify the Active Directory Domain Services instance in one of the following wa The default value for this parameter is determined by one of the following methods in the order that they are listed: -- By using the **Server** value from objects passed through the pipeline -- By using the server information associated with the Active Directory Domain ServicesWindows PowerShell provider drive, when the cmdlet runs in that drive +- By using the *Server* value from objects passed through the pipeline +- By using the server information associated with the Active Directory Domain Services Windows PowerShell provider drive, when the cmdlet runs in that drive - By using the domain of the computer running Windows PowerShell ```yaml @@ -238,12 +234,12 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS ### Microsoft.ActiveDirectory.Management.ADDomainController -A domain controller object is received by the **Identity** parameter. +A domain controller object is received by the *Identity* parameter. ## OUTPUTS From b944cdc4024c6744f900fe256a5fd2627281d869 Mon Sep 17 00:00:00 2001 From: Borislav Velkov Date: Thu, 26 Sep 2019 21:09:40 +0300 Subject: [PATCH 2/4] Apply suggestions from code review Co-Authored-By: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- ...-ADDomainControllerPasswordReplicationPolicy.md | 14 +++++++------- ...-ADDomainControllerPasswordReplicationPolicy.md | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docset/winserver2012-ps/activedirectory/Get-ADDomainControllerPasswordReplicationPolicy.md b/docset/winserver2012-ps/activedirectory/Get-ADDomainControllerPasswordReplicationPolicy.md index 76ac0c90a5..9e2b18a084 100644 --- a/docset/winserver2012-ps/activedirectory/Get-ADDomainControllerPasswordReplicationPolicy.md +++ b/docset/winserver2012-ps/activedirectory/Get-ADDomainControllerPasswordReplicationPolicy.md @@ -44,7 +44,7 @@ If you specify a writeable domain controller for this cmdlet, the cmdlet returns ## EXAMPLES -### Example 1: gets from an RODC domain controller password replication policy the allowed accounts showing the name and object class of each +### Example 1: Gets from an RODC domain controller password replication policy the allowed accounts showing the name and object class of each ``` C:\PS>Get-ADDomainControllerPasswordReplicationPolicy -Identity "FABRIKAM-RODC1" -Allowed | ft Name,ObjectClass ``` @@ -136,7 +136,7 @@ Accept wildcard characters: False ``` ### -Denied -Specifies the users, computers, groups or other accounts to add to the list of accounts that are denied the right to replicate their passwords to this read-only domain controller (RODC). +Specifies the users, computers, groups, or other accounts to add to the list of accounts that are denied the right to replicate their passwords to this read-only domain controller (RODC). You can specify more than one value by using a comma-separated list. The acceptable values for this parameter are: @@ -191,8 +191,8 @@ Accept wildcard characters: False ``` ### -Server -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. +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. Specify the Active Directory Domain Services instance in one of the following ways: @@ -226,7 +226,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [About CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS @@ -241,7 +241,7 @@ The list returned depends on the parameters specified. ## NOTES * This cmdlet does not work with Active Directory Lightweight Directory Services. -* This cmdlet does not work when targeting a snapshot using the Server parameter.. +* This cmdlet does not work when targeting a snapshot using the Server parameter. ## RELATED LINKS @@ -249,4 +249,4 @@ The list returned depends on the parameters specified. [Remove-ADDomainControllerPasswordReplicationPolicy](./Remove-ADDomainControllerPasswordReplicationPolicy.md) -[AD DS Administration Cmdlets in Windows PowerShell](./ActiveDirectory.md) \ No newline at end of file +[AD DS Administration Cmdlets in Windows PowerShell](./ActiveDirectory.md) diff --git a/docset/winserver2012r2-ps/addsadministration/Get-ADDomainControllerPasswordReplicationPolicy.md b/docset/winserver2012r2-ps/addsadministration/Get-ADDomainControllerPasswordReplicationPolicy.md index 780ca1b7a1..8d277349a6 100644 --- a/docset/winserver2012r2-ps/addsadministration/Get-ADDomainControllerPasswordReplicationPolicy.md +++ b/docset/winserver2012r2-ps/addsadministration/Get-ADDomainControllerPasswordReplicationPolicy.md @@ -234,7 +234,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [About CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS From 5e65231ffb4466a44161d3d09ba6497e96fa6e1f Mon Sep 17 00:00:00 2001 From: Rebecca Agiewich Date: Mon, 30 Sep 2019 13:05:09 -0700 Subject: [PATCH 3/4] changed "http" to "https" --- .../Get-ADDomainControllerPasswordReplicationPolicy.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2012r2-ps/addsadministration/Get-ADDomainControllerPasswordReplicationPolicy.md b/docset/winserver2012r2-ps/addsadministration/Get-ADDomainControllerPasswordReplicationPolicy.md index 8d277349a6..7dbafa30e7 100644 --- a/docset/winserver2012r2-ps/addsadministration/Get-ADDomainControllerPasswordReplicationPolicy.md +++ b/docset/winserver2012r2-ps/addsadministration/Get-ADDomainControllerPasswordReplicationPolicy.md @@ -234,7 +234,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [About CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [About CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS From 73eaabfecf3db485aae863c7f87eeb643bedc999 Mon Sep 17 00:00:00 2001 From: Rebecca Agiewich Date: Mon, 30 Sep 2019 13:06:35 -0700 Subject: [PATCH 4/4] changed "http" to "https" --- .../Get-ADDomainControllerPasswordReplicationPolicy.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docset/winserver2012-ps/activedirectory/Get-ADDomainControllerPasswordReplicationPolicy.md b/docset/winserver2012-ps/activedirectory/Get-ADDomainControllerPasswordReplicationPolicy.md index 9e2b18a084..dd4c06facb 100644 --- a/docset/winserver2012-ps/activedirectory/Get-ADDomainControllerPasswordReplicationPolicy.md +++ b/docset/winserver2012-ps/activedirectory/Get-ADDomainControllerPasswordReplicationPolicy.md @@ -226,7 +226,7 @@ Accept wildcard characters: False ``` ### CommonParameters -This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [About CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [About CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). ## INPUTS