Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
0311003
Update Set-CsTenantFederationConfiguration.md
rhrivnak Dec 11, 2024
936c7f5
Update Set-CsTenantFederationConfiguration.md
rhrivnak Dec 11, 2024
8ada996
Merge branch 'MicrosoftDocs:main' into new-example-allowedtrialtenant…
rhrivnak Jan 16, 2025
c2852a9
Fix grammar in documentation for `AllowedTrialTenantDomains`
chrisda Jan 16, 2025
100d5b6
Merge branch 'main' into new-example-allowedtrialtenantdomains
chrisda Jan 16, 2025
73db37b
Merge branch 'main' into new-example-allowedtrialtenantdomains
rhrivnak Feb 5, 2025
0db6350
Merge branch 'main' into new-example-allowedtrialtenantdomains
rhrivnak Feb 7, 2025
8a85ed0
Merge branch 'main' into new-example-allowedtrialtenantdomains
rhrivnak Feb 11, 2025
8890b05
Update Set-CsExternalAccessPolicy.md
krammerliu Feb 24, 2025
45d5412
Update New-CsExternalAccessPolicy.md
krammerliu Feb 24, 2025
0e3cacd
Removing preview banner
jamescadd Feb 25, 2025
fbdc644
Merge branch 'main' into acs-teams-federation-ga
garycentric Feb 25, 2025
9413310
Merge branch 'main' into new-example-allowedtrialtenantdomains
garycentric Feb 25, 2025
99f7c2f
Merge pull request #12544 from jamescadd/acs-teams-federation-ga
garycentric Feb 25, 2025
7d525bf
Merge branch 'main' into new-example-allowedtrialtenantdomains
garycentric Feb 25, 2025
f087015
Merge pull request #12468 from rhrivnak/new-example-allowedtrialtenan…
garycentric Feb 25, 2025
194ea4d
Merge branch 'main' into patch-4
garycentric Feb 25, 2025
f78bbae
Merge branch 'main' into patch-3
garycentric Feb 25, 2025
62ac575
Merge pull request #12543 from krammerliu/patch-4
garycentric Feb 25, 2025
2eca2ff
Merge branch 'main' into patch-3
garycentric Feb 25, 2025
3dec277
Merge pull request #12542 from krammerliu/patch-3
garycentric Feb 25, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion teams/teams-ps/teams/New-CsExternalAccessPolicy.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ For information about external access in Microsoft Teams, see [Manage external a
New-CsExternalAccessPolicy [-Identity] <XdsIdentity>
[-AllowedExternalDomains <List>]
[-BlockedExternalDomains <List>]
[-CommunicationWithExternalOrgs <Boolean>]
[-CommunicationWithExternalOrgs <String>]
[-Confirm]
[-Description <String>]
[-EnableAcsFederationAccess <Boolean>]
Expand Down
4 changes: 2 additions & 2 deletions teams/teams-ps/teams/Set-CsExternalAccessPolicy.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ This cmdlet was introduced in Lync Server 2010.
Set-CsExternalAccessPolicy [[-Identity] <XdsIdentity>]
[-AllowedExternalDomains <List>]
[-BlockedExternalDomains <List>]
[-CommunicationWithExternalOrgs <Boolean>]
[-CommunicationWithExternalOrgs <String>]
[-Confirm]
[-Description <String>]
[-EnableAcsFederationAccess <Boolean>]
Expand All @@ -47,7 +47,7 @@ Set-CsExternalAccessPolicy [[-Identity] <XdsIdentity>]
Set-CsExternalAccessPolicy [-Instance <PSObject>]
[-AllowedExternalDomains <List>]
[-BlockedExternalDomains <List>]
[-CommunicationWithExternalOrgs <Boolean>]
[-CommunicationWithExternalOrgs <String>]
[-Confirm]
[-Description <String>]
[-EnableAcsFederationAccess <Boolean>]
Expand Down
2 changes: 0 additions & 2 deletions teams/teams-ps/teams/Set-CsTeamsAcsFederationConfiguration.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ schema: 2.0.0

## SYNOPSIS

**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/).

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).

## SYNTAX
Expand Down
19 changes: 14 additions & 5 deletions teams/teams-ps/teams/Set-CsTenantFederationConfiguration.md
Original file line number Diff line number Diff line change
Expand Up @@ -187,34 +187,43 @@ When this command completes, the Allowed Trial Tenant Domains list will be repla

### -------------------------- Example 13 --------------------------
```
Set-CsTenantFederationConfiguration -AllowedTrialTenantDomains @("contoso.com", "fabrikam.com")
```

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.

The array of `AllowedTrialTenantDomains` can be emptied by running the following command: `Set-CsTenantFederationConfiguration -AllowedTrialTenantDomains @()`.

### -------------------------- Example 14 --------------------------
```
$list = New-Object Collections.Generic.List[String]
$list.add("contoso.com")

Set-CsTenantFederationConfiguration -AllowedTrialTenantDomains @{Add=$list}
```

Example 13 shows how you can add domains to the existing Allowed Trial Tenant Domains using a List collection object.
Example 14 shows how you can add domains to the existing Allowed Trial Tenant Domains using a List collection object.
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.
When this command completes, the domains in the list will be added to any domains already on the Allowed Trial Tenant Domains list.

### -------------------------- Example 14 --------------------------
### -------------------------- Example 15 --------------------------
```
$list = New-Object Collections.Generic.List[String]
$list.add("contoso.com")

Set-CsTenantFederationConfiguration -AllowedTrialTenantDomains @{Remove=$list}
```

Example 14 shows how you can remove domains from the existing Allowed Trial Tenant Domains using a List collection object.
Example 15 shows how you can remove domains from the existing Allowed Trial Tenant Domains using a List collection object.
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.
When this command completes, the domains in the list will be removed from the Allowed Trial Tenant Domains list.

### -------------------------- Example 15 -------------------------
### -------------------------- Example 16 -------------------------
```
Set-CsTenantFederationConfiguration -CustomizeFederation $True
```

Example 15 shows how you can enable the feature where you can customize your federation in ExternalAccessPolicy.
Example 16 shows how you can enable the feature where you can customize your federation in ExternalAccessPolicy.

## PARAMETERS

Expand Down