You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: exchange/docs-conceptual/exchange-online-powershell-v2.md
+17-3Lines changed: 17 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ title: About the Exchange Online PowerShell V3 module
3
3
ms.author: chrisda
4
4
author: chrisda
5
5
manager: deniseb
6
-
ms.date: 10/28/2024
6
+
ms.date: 02/25/2025
7
7
ms.audience: Admin
8
8
audience: Admin
9
9
ms.topic: article
@@ -613,14 +613,28 @@ Unless otherwise noted, the current release of the Exchange Online PowerShell mo
613
613
614
614
### Current release
615
615
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
+
616
632
#### Version 3.6.0
617
633
618
634
-**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).
619
635
- Cmdlets for Viva feature access management now handle continuous access evaluation (CAE) claim challenges.
620
636
- Added fix for compatibility issue with the Microsoft.Graph module.
621
637
622
-
### Previous releases
623
-
624
638
#### Version 3.5.1
625
639
626
640
- Bug fixes in **Get-EXOMailboxPermission** and **Get-EXOMailbox**.
Copy file name to clipboardExpand all lines: exchange/docs-conceptual/whats-new-in-the-exo-module.md
+14Lines changed: 14 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,20 @@ description: "Learn about the new features and functionality available in the la
22
22
23
23
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)**.
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).
Copy file name to clipboardExpand all lines: exchange/exchange-ps/exchange/Set-ServerComponentState.md
+1-2Lines changed: 1 addition & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -56,8 +56,7 @@ The first command changes the state of all server components to Inactive.
56
56
57
57
The second command changes the state to Active after the maintenance is over (required).
58
58
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.
Copy file name to clipboardExpand all lines: teams/teams-ps/teams/Set-CsTeamsAcsFederationConfiguration.md
-2Lines changed: 0 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,8 +12,6 @@ schema: 2.0.0
12
12
13
13
## SYNOPSIS
14
14
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
-
17
15
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).
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 --------------------------
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.
197
206
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.
198
207
When this command completes, the domains in the list will be added to any domains already on the Allowed Trial Tenant Domains list.
199
208
200
-
### -------------------------- Example 14 --------------------------
209
+
### -------------------------- Example 15 --------------------------
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.
209
218
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.
210
219
When this command completes, the domains in the list will be removed from the Allowed Trial Tenant Domains list.
211
220
212
-
### -------------------------- Example 15 -------------------------
221
+
### -------------------------- Example 16 -------------------------
0 commit comments