Skip to content

Commit b7841c0

Browse files
authored
Merge pull request #12547 from MicrosoftDocs/main
publish main to live, 2/25/25, 3:30 pm
2 parents 11e6c72 + 3dec277 commit b7841c0

File tree

4 files changed

+17
-10
lines changed

4 files changed

+17
-10
lines changed

teams/teams-ps/teams/New-CsExternalAccessPolicy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ For information about external access in Microsoft Teams, see [Manage external a
2727
New-CsExternalAccessPolicy [-Identity] <XdsIdentity>
2828
[-AllowedExternalDomains <List>]
2929
[-BlockedExternalDomains <List>]
30-
[-CommunicationWithExternalOrgs <Boolean>]
30+
[-CommunicationWithExternalOrgs <String>]
3131
[-Confirm]
3232
[-Description <String>]
3333
[-EnableAcsFederationAccess <Boolean>]

teams/teams-ps/teams/Set-CsExternalAccessPolicy.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ This cmdlet was introduced in Lync Server 2010.
2222
Set-CsExternalAccessPolicy [[-Identity] <XdsIdentity>]
2323
[-AllowedExternalDomains <List>]
2424
[-BlockedExternalDomains <List>]
25-
[-CommunicationWithExternalOrgs <Boolean>]
25+
[-CommunicationWithExternalOrgs <String>]
2626
[-Confirm]
2727
[-Description <String>]
2828
[-EnableAcsFederationAccess <Boolean>]
@@ -47,7 +47,7 @@ Set-CsExternalAccessPolicy [[-Identity] <XdsIdentity>]
4747
Set-CsExternalAccessPolicy [-Instance <PSObject>]
4848
[-AllowedExternalDomains <List>]
4949
[-BlockedExternalDomains <List>]
50-
[-CommunicationWithExternalOrgs <Boolean>]
50+
[-CommunicationWithExternalOrgs <String>]
5151
[-Confirm]
5252
[-Description <String>]
5353
[-EnableAcsFederationAccess <Boolean>]

teams/teams-ps/teams/Set-CsTeamsAcsFederationConfiguration.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ schema: 2.0.0
1212

1313
## SYNOPSIS
1414

15-
**Limited Preview:** Functionality described in this document is currently in limited preview and only authorized organizations have access. This preview version is provided without a service-level agreement, and is not recommended for production workloads. Certain features might not be supported or might have constrained capabilities. For more information, see [Supplemental Terms of Use for Microsoft Azure Previews](https://azure.microsoft.com/support/legal/preview-supplemental-terms/).
16-
1715
This cmdlet is used to manage the federation configuration between Teams and Azure Communication Services. For more information, please see [Azure Communication Services and Teams Interoperability](https://learn.microsoft.com/azure/communication-services/concepts/teams-interop).
1816

1917
## SYNTAX

teams/teams-ps/teams/Set-CsTenantFederationConfiguration.md

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -187,34 +187,43 @@ When this command completes, the Allowed Trial Tenant Domains list will be repla
187187

188188
### -------------------------- Example 13 --------------------------
189189
```
190+
Set-CsTenantFederationConfiguration -AllowedTrialTenantDomains @("contoso.com", "fabrikam.com")
191+
```
192+
193+
Example 13 shows another way to set a value of `AllowedTrialTenantDomains`. It uses array of objects and it always replaces value of the `AllowedTrialTenantDomains`. When this command completes, the result is the same as in example 12.
194+
195+
The array of `AllowedTrialTenantDomains` can be emptied by running the following command: `Set-CsTenantFederationConfiguration -AllowedTrialTenantDomains @()`.
196+
197+
### -------------------------- Example 14 --------------------------
198+
```
190199
$list = New-Object Collections.Generic.List[String]
191200
$list.add("contoso.com")
192201
193202
Set-CsTenantFederationConfiguration -AllowedTrialTenantDomains @{Add=$list}
194203
```
195204

196-
Example 13 shows how you can add domains to the existing Allowed Trial Tenant Domains using a List collection object.
205+
Example 14 shows how you can add domains to the existing Allowed Trial Tenant Domains using a List collection object.
197206
First, a List is created and domains are added to it, then, use the Add method in the `AllowedTrialTenantDomains` parameter to add the domains to the existing allowed domains list.
198207
When this command completes, the domains in the list will be added to any domains already on the Allowed Trial Tenant Domains list.
199208

200-
### -------------------------- Example 14 --------------------------
209+
### -------------------------- Example 15 --------------------------
201210
```
202211
$list = New-Object Collections.Generic.List[String]
203212
$list.add("contoso.com")
204213
205214
Set-CsTenantFederationConfiguration -AllowedTrialTenantDomains @{Remove=$list}
206215
```
207216

208-
Example 14 shows how you can remove domains from the existing Allowed Trial Tenant Domains using a List collection object.
217+
Example 15 shows how you can remove domains from the existing Allowed Trial Tenant Domains using a List collection object.
209218
First, a List is created and domains are added to it, then use the Remove method in the `AllowedTrialTenantDomains` parameter to remove the domains from the existing allowed domains list.
210219
When this command completes, the domains in the list will be removed from the Allowed Trial Tenant Domains list.
211220

212-
### -------------------------- Example 15 -------------------------
221+
### -------------------------- Example 16 -------------------------
213222
```
214223
Set-CsTenantFederationConfiguration -CustomizeFederation $True
215224
```
216225

217-
Example 15 shows how you can enable the feature where you can customize your federation in ExternalAccessPolicy.
226+
Example 16 shows how you can enable the feature where you can customize your federation in ExternalAccessPolicy.
218227

219228
## PARAMETERS
220229

0 commit comments

Comments
 (0)