Add SecondaryUrl parameter to Add-LDAPIdentitySource

This commit is contained in:
Dimitar Milov
2021-02-17 16:38:46 +02:00
parent 13dc050dd2
commit 8606722f6e
7 changed files with 14 additions and 1 deletions

View File

@@ -1497,6 +1497,9 @@ function Add-LDAPIdentitySource {
.PARAMETER PrimaryUrl
Primary Server URL
.PARAMETER SecondaryUrl
Secondary Server URL
.PARAMETER BaseDNUsers
Base distinguished name for users
@@ -1560,6 +1563,13 @@ function Add-LDAPIdentitySource {
[string]
$DomainAlias,
[Parameter(
Mandatory=$false,
ValueFromPipeline=$false,
ValueFromPipelineByPropertyName=$false)]
[string]
$SecondaryUrl,
[Parameter(
Mandatory=$true,
ValueFromPipeline=$false,
@@ -1647,6 +1657,7 @@ function Add-LDAPIdentitySource {
$DomainAlias,
$Name,
$PrimaryUrl,
$SecondaryUrl,
$BaseDNUsers,
$BaseDNGroups,
$Username,