Skip to content

Commit f78bbae

Browse files
authored
Merge branch 'main' into patch-3
2 parents 8890b05 + f087015 commit f78bbae

File tree

5 files changed

+46
-12
lines changed

5 files changed

+46
-12
lines changed

exchange/docs-conceptual/exchange-online-powershell-v2.md

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: About the Exchange Online PowerShell V3 module
33
ms.author: chrisda
44
author: chrisda
55
manager: deniseb
6-
ms.date: 10/28/2024
6+
ms.date: 02/25/2025
77
ms.audience: Admin
88
audience: Admin
99
ms.topic: article
@@ -613,14 +613,28 @@ Unless otherwise noted, the current release of the Exchange Online PowerShell mo
613613

614614
### Current release
615615

616+
#### Version 3.7.1
617+
618+
- Added a new property named `ExoExchangeSecurityDescriptor` to the output of **Get-EXOMailbox** that's similar to the `ExchangeSecurityDescriptor` property in the output of **Get-Mailbox**.
619+
- Added new cmdlets to support the Viva Org Insights Delegation feature:
620+
- **Add-VivaOrgInsightsDelegatedRole**
621+
- **Get-VivaOrgInsightsDelegatedRole**
622+
- **Remove-VivaOrgInsightsDelegatedRole**
623+
624+
### Previous releases
625+
626+
#### Version 3.7.0
627+
628+
- Integrated Web Account Manager (WAM) in authentication flows to enhance security.
629+
- Command line help for Exchange Online PowerShell cmdlets is no longer loaded by default. Use the _LoadCmdletHelp_ parameter in the **Connect-ExchangeOnline** command so help for Exchange Online PowerShell cmdlets is available to the **Get-Help** cmdlet.
630+
- Fixed connection issues with app only authentication in Security & Compliance PowerShell.
631+
616632
#### Version 3.6.0
617633

618634
- **Get-VivaModuleFeature** now returns information about the kinds of identities that the feature supports creating policies for (for example, users, groups, or the entire tenant).
619635
- Cmdlets for Viva feature access management now handle continuous access evaluation (CAE) claim challenges.
620636
- Added fix for compatibility issue with the Microsoft.Graph module.
621637

622-
### Previous releases
623-
624638
#### Version 3.5.1
625639

626640
- Bug fixes in **Get-EXOMailboxPermission** and **Get-EXOMailbox**.

exchange/docs-conceptual/whats-new-in-the-exo-module.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,20 @@ description: "Learn about the new features and functionality available in the la
2222

2323
This article lists new features in the Exchange Online PowerShell module that's used for connecting to Exchange Online PowerShell, Security & Compliance PowerShell, and standalone Exchange Online Protection (EOP) PowerShell. Features that are currently in preview are denoted with **(preview)**.
2424

25+
## January 2025
26+
27+
- [Version 3.7.1](https://www.powershellgallery.com/packages/ExchangeOnlineManagement/3.7.1)
28+
29+
For information about what's in this release, see [Version 3.7.1](exchange-online-powershell-v2.md#version-371).
30+
31+
## December 2024
32+
33+
- [Version 3.7.0](https://www.powershellgallery.com/packages/ExchangeOnlineManagement/3.7.0)
34+
35+
Starting with this version of the module, command line help for Exchange Online PowerShell cmdlets is no longer loaded by default. Use the _LoadCmdletHelp_ parameter in the **Connect-ExchangeOnline** command so help for Exchange Online PowerShell cmdlets is available to the **Get-Help** cmdlet.
36+
37+
For information about what's in this release, see [Version 3.7.0](exchange-online-powershell-v2.md#version-370).
38+
2539
## September 2024
2640

2741
- [Version 3.6.0](https://www.powershellgallery.com/packages/ExchangeOnlineManagement/3.6.0)

exchange/exchange-ps/exchange/Set-ServerComponentState.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,7 @@ The first command changes the state of all server components to Inactive.
5656

5757
The second command changes the state to Active after the maintenance is over (required).
5858

59-
> [!NOTE]
60-
> By design, the Microsoft Exchange IMAP4 and Microsoft Exchange POP3 services stop if the related `ImapProxy` and `PopProxy` components are in the Inactive state. The services may need to be manually started after the related `ImapProxy` and `PopProxy` components are changed to the Active state.
59+
**Note**: By design, the Microsoft Exchange IMAP4 and Microsoft Exchange POP3 services stop if the related `ImapProxy` and `PopProxy` components are in the Inactive state. You might need to manually restart the services after the related `ImapProxy` and `PopProxy` components are changed to the Active state.
6160

6261
## PARAMETERS
6362

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)