From d524897dcc247e2efdd03f71f1810378dd9016c9 Mon Sep 17 00:00:00 2001 From: William Blocker <118470885+saleens7@users.noreply.github.com> Date: Thu, 24 Jul 2025 15:26:25 -0700 Subject: [PATCH 1/9] Update Set-CsTeamsAcsFederationConfiguration.md --- .../Set-CsTeamsAcsFederationConfiguration.md | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/teams/teams-ps/teams/Set-CsTeamsAcsFederationConfiguration.md b/teams/teams-ps/teams/Set-CsTeamsAcsFederationConfiguration.md index d5d3e1c8a6..1ddd884d77 100644 --- a/teams/teams-ps/teams/Set-CsTeamsAcsFederationConfiguration.md +++ b/teams/teams-ps/teams/Set-CsTeamsAcsFederationConfiguration.md @@ -21,6 +21,8 @@ Set-CsTeamsAcsFederationConfiguration [-Identity ] [-EnableAcsUsers ] [-AllowedAcsResources ] + [-LabelForAllowedAcsUsers ] + [-HideBannerForAllowedAcsUsers ] [-WhatIf] [-Confirm] [] @@ -79,6 +81,30 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -LabelForAllowedAcsUsers + +This configuration controls the user label that is displayed for Azure Communication Services users when they join Teams meetings or calls + +```yaml +Type: String +Position: Named +Default value: Unverified +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HideBannerForAllowedAcsUsers + +This configuration controls the display of the 'limited call features' banner for Azure Communication Services users participating in Teams meetings or calls. + +```yaml +Type: Boolean +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Identity Specifies the collection of tenant federation configuration settings to be modified. Because each tenant is limited to a single, global collection of federation settings there is no need include this parameter when calling the Set-CsTenantFederationConfiguration cmdlet. If you do choose to use the Identity parameter, you must also include the Tenant parameter. For example: From fd68a3b4f0517faf8c3b654692c4c7654f44916c Mon Sep 17 00:00:00 2001 From: William Blocker <118470885+saleens7@users.noreply.github.com> Date: Mon, 28 Jul 2025 10:16:58 -0700 Subject: [PATCH 2/9] Update Set-CsTeamsAcsFederationConfiguration.md --- teams/teams-ps/teams/Set-CsTeamsAcsFederationConfiguration.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/teams/teams-ps/teams/Set-CsTeamsAcsFederationConfiguration.md b/teams/teams-ps/teams/Set-CsTeamsAcsFederationConfiguration.md index 1ddd884d77..5da7653c1a 100644 --- a/teams/teams-ps/teams/Set-CsTeamsAcsFederationConfiguration.md +++ b/teams/teams-ps/teams/Set-CsTeamsAcsFederationConfiguration.md @@ -83,7 +83,7 @@ Accept wildcard characters: False ### -LabelForAllowedAcsUsers -This configuration controls the user label that is displayed for Azure Communication Services users when they join Teams meetings or calls +This configuration controls the user label that is displayed for Azure Communication Services users when they join Teams meetings or calls. Possible values are: Unverified, External. When the value is set to Unverified, the ACS user label is displayed as 'Unverified' when an ACS user joins Teams meetings or calls. When the value is set to External, if an ACS user joins a Teams meeting or call from a resource listed in AllowAllAcsResources, their label should be displayed as 'External'. ```yaml Type: String @@ -95,7 +95,7 @@ Accept wildcard characters: False ### -HideBannerForAllowedAcsUsers -This configuration controls the display of the 'limited call features' banner for Azure Communication Services users participating in Teams meetings or calls. +This configuration controls the display of the 'limited call features' banner for Azure Communication Services users participating in Teams meetings or calls. Possible values are: True, False. Set to True to hide the banner for allowed ACS users in Teams meetings or calls. ```yaml Type: Boolean From 7caabfcb3c404a49148ddbe29b8620e3a843d63e Mon Sep 17 00:00:00 2001 From: William Blocker <118470885+saleens7@users.noreply.github.com> Date: Mon, 28 Jul 2025 10:22:10 -0700 Subject: [PATCH 3/9] Update Set-CsTeamsAcsFederationConfiguration.md --- .../teams/Set-CsTeamsAcsFederationConfiguration.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/teams/teams-ps/teams/Set-CsTeamsAcsFederationConfiguration.md b/teams/teams-ps/teams/Set-CsTeamsAcsFederationConfiguration.md index 5da7653c1a..9e828dcc88 100644 --- a/teams/teams-ps/teams/Set-CsTeamsAcsFederationConfiguration.md +++ b/teams/teams-ps/teams/Set-CsTeamsAcsFederationConfiguration.md @@ -67,6 +67,20 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -BlockedAcsResources + +List of blocked Azure Communication Services resources. + +The ACS resources are listed using their immutable resource id, which is a guid that can be found on the Azure portal. + +```yaml +Type: String[] +Position: Named +Default value: Empty/Null +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -AllowedAcsResources The list of the ACS resources (at least one) for which federation is enabled, when EnableAcsUsers is set to true. If EnableAcsUsers is set to false, then this list is ignored and should be null/empty. From 453248e9050ff1471cff3d47917752eee68487f8 Mon Sep 17 00:00:00 2001 From: William Blocker <118470885+saleens7@users.noreply.github.com> Date: Mon, 28 Jul 2025 10:23:12 -0700 Subject: [PATCH 4/9] Update Set-CsTeamsAcsFederationConfiguration.md --- teams/teams-ps/teams/Set-CsTeamsAcsFederationConfiguration.md | 1 + 1 file changed, 1 insertion(+) diff --git a/teams/teams-ps/teams/Set-CsTeamsAcsFederationConfiguration.md b/teams/teams-ps/teams/Set-CsTeamsAcsFederationConfiguration.md index 9e828dcc88..371877d89e 100644 --- a/teams/teams-ps/teams/Set-CsTeamsAcsFederationConfiguration.md +++ b/teams/teams-ps/teams/Set-CsTeamsAcsFederationConfiguration.md @@ -21,6 +21,7 @@ Set-CsTeamsAcsFederationConfiguration [-Identity ] [-EnableAcsUsers ] [-AllowedAcsResources ] + [-BlockedAcsResources ] [-LabelForAllowedAcsUsers ] [-HideBannerForAllowedAcsUsers ] [-WhatIf] From b06507403f138f244382d72b3746038da04463b1 Mon Sep 17 00:00:00 2001 From: William Blocker <118470885+saleens7@users.noreply.github.com> Date: Mon, 28 Jul 2025 10:27:04 -0700 Subject: [PATCH 5/9] Update Set-CsTeamsAcsFederationConfiguration.md --- .../teams/Set-CsTeamsAcsFederationConfiguration.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/teams/teams-ps/teams/Set-CsTeamsAcsFederationConfiguration.md b/teams/teams-ps/teams/Set-CsTeamsAcsFederationConfiguration.md index 371877d89e..a2fc204c3e 100644 --- a/teams/teams-ps/teams/Set-CsTeamsAcsFederationConfiguration.md +++ b/teams/teams-ps/teams/Set-CsTeamsAcsFederationConfiguration.md @@ -22,6 +22,7 @@ Set-CsTeamsAcsFederationConfiguration [-EnableAcsUsers ] [-AllowedAcsResources ] [-BlockedAcsResources ] + [-RequireAcsFederationForMeeting ] [-LabelForAllowedAcsUsers ] [-HideBannerForAllowedAcsUsers ] [-WhatIf] @@ -108,6 +109,18 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -RequireAcsFederationForMeeting + +This configuration controls whether ACS Federation is required for meetings. Possibles values are: True, False. + +```yaml +Type: Boolean +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -HideBannerForAllowedAcsUsers This configuration controls the display of the 'limited call features' banner for Azure Communication Services users participating in Teams meetings or calls. Possible values are: True, False. Set to True to hide the banner for allowed ACS users in Teams meetings or calls. From ab527892731acc82529f593192bc0847974f9d80 Mon Sep 17 00:00:00 2001 From: William Blocker <118470885+saleens7@users.noreply.github.com> Date: Mon, 28 Jul 2025 10:44:23 -0700 Subject: [PATCH 6/9] Update Set-CsTeamsAcsFederationConfiguration.md --- .../teams/Set-CsTeamsAcsFederationConfiguration.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/teams/teams-ps/teams/Set-CsTeamsAcsFederationConfiguration.md b/teams/teams-ps/teams/Set-CsTeamsAcsFederationConfiguration.md index a2fc204c3e..dcc0f7acf6 100644 --- a/teams/teams-ps/teams/Set-CsTeamsAcsFederationConfiguration.md +++ b/teams/teams-ps/teams/Set-CsTeamsAcsFederationConfiguration.md @@ -20,6 +20,7 @@ This cmdlet is used to manage the federation configuration between Teams and Azu Set-CsTeamsAcsFederationConfiguration [-Identity ] [-EnableAcsUsers ] + [-AllowAllAcsResources ] [-AllowedAcsResources ] [-BlockedAcsResources ] [-RequireAcsFederationForMeeting ] @@ -69,6 +70,18 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -AllowAllAcsResources + +DEPRECATED. Do not use. + +```yaml +Type: Boolean +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -BlockedAcsResources List of blocked Azure Communication Services resources. From aff2b16e508ba91ed5dfe70af43da8f6d73e50d9 Mon Sep 17 00:00:00 2001 From: Chris Davis Date: Mon, 28 Jul 2025 11:48:46 -0700 Subject: [PATCH 7/9] Update .openpublishing.redirection.exchange.json Connect to EOP PowerShell redirect --- .openpublishing.redirection.exchange.json | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.openpublishing.redirection.exchange.json b/.openpublishing.redirection.exchange.json index 10c412f96e..199d14b28b 100644 --- a/.openpublishing.redirection.exchange.json +++ b/.openpublishing.redirection.exchange.json @@ -6602,7 +6602,7 @@ }, { "source_path": "exchange/docs-conceptual/exchange-eop/connect-to-exchange-online-protection-powershell.md", - "redirect_url": "/powershell/exchange/connect-to-exchange-online-protection-powershell", + "redirect_url": "/powershell/exchange/connect-to-exchange-online-powershell", "redirect_document_id": true }, { @@ -6842,7 +6842,7 @@ }, { "source_path": "exchange/docs-conceptual/basic-auth-connect-to-eop-powershell.md", - "redirect_url": "/powershell/exchange/connect-to-exchange-online-protection-powershell", + "redirect_url": "/powershell/exchange/connect-to-exchange-online-powershell", "redirect_document_id": false }, { @@ -7194,6 +7194,11 @@ "source_path": "exchange/virtual-folder/exchange/Remove-RecordLabel.md", "redirect_url": "/powershell/module/exchange/remove-label", "redirect_document_id": false + }, + { + "source_path": "exchange/docs-conceptual/connect-to-exchange-online-protection-powershell.md", + "redirect_url": "/powershell/exchange/connect-to-exchange-online-powershell", + "redirect_document_id": false } ] } \ No newline at end of file From e14a1af69dde4c995187ac0fc022774f5f4f1822 Mon Sep 17 00:00:00 2001 From: Chris Davis Date: Mon, 28 Jul 2025 11:56:13 -0700 Subject: [PATCH 8/9] Update .openpublishing.redirection.exchange.json --- .openpublishing.redirection.exchange.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.openpublishing.redirection.exchange.json b/.openpublishing.redirection.exchange.json index 199d14b28b..4ffa3d0140 100644 --- a/.openpublishing.redirection.exchange.json +++ b/.openpublishing.redirection.exchange.json @@ -6573,7 +6573,7 @@ { "source_path": "exchange/docs-conceptual/exchange-online/connect-to-exchange-online-powershell/connect-to-exchange-online-powershell.md", "redirect_url": "/powershell/exchange/connect-to-exchange-online-powershell", - "redirect_document_id": true + "redirect_document_id": false }, { "source_path": "exchange/docs-conceptual/exchange-online/connect-to-exchange-online-powershell/mfa-connect-to-exchange-online-powershell.md", @@ -6603,7 +6603,7 @@ { "source_path": "exchange/docs-conceptual/exchange-eop/connect-to-exchange-online-protection-powershell.md", "redirect_url": "/powershell/exchange/connect-to-exchange-online-powershell", - "redirect_document_id": true + "redirect_document_id": false }, { "source_path": "exchange/docs-conceptual/exchange-eop/exchange-online-protection-powershell.md", From 62f94940a1eb54f563494e198cb0a8b26f7ea8ca Mon Sep 17 00:00:00 2001 From: Chris Davis Date: Mon, 28 Jul 2025 11:59:55 -0700 Subject: [PATCH 9/9] Update .openpublishing.redirection.exchange.json --- .openpublishing.redirection.exchange.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.openpublishing.redirection.exchange.json b/.openpublishing.redirection.exchange.json index 4ffa3d0140..7eb756dfc2 100644 --- a/.openpublishing.redirection.exchange.json +++ b/.openpublishing.redirection.exchange.json @@ -6573,7 +6573,7 @@ { "source_path": "exchange/docs-conceptual/exchange-online/connect-to-exchange-online-powershell/connect-to-exchange-online-powershell.md", "redirect_url": "/powershell/exchange/connect-to-exchange-online-powershell", - "redirect_document_id": false + "redirect_document_id": true }, { "source_path": "exchange/docs-conceptual/exchange-online/connect-to-exchange-online-powershell/mfa-connect-to-exchange-online-powershell.md",