Topic Last Modified: 2013-08-13

Adding a first domain to the allowed domains list is a three-step process. First, use the New-CsEdgeDomainPattern cmdlet to create a domain object for the domain to be added:

Copy Code
$x = New-CsEdgeDomainPattern -Domain "fabrikam.com"

Next, use the New-CsEdgeAllowList cmdlet to create a new allowed list that includes the domain object:

Copy Code
$newAllowList = New-CsEdgeAllowList -AllowedDomain $x

Finally, use the Set-CsTenantFederationConfiguration cmdlet to write the new allowed list to Lync Online:

Copy Code
Set-CsTenantFederationConfiguration -AllowedDomains $newAllowList

See Also