Skip to content

Commit db7df11

Browse files
committed
Merge branch 'master' into PhishSim-chrisda
2 parents 74a7045 + 0ed3088 commit db7df11

File tree

7 files changed

+103
-6
lines changed

7 files changed

+103
-6
lines changed

exchange/exchange-ps/exchange/New-MailUser.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ You need to be assigned permissions before you can run this cmdlet. Although thi
183183

184184
### Example 1
185185
```powershell
186-
New-MailUser -Name "Ed Meadows" -ExternalEmailAddress [email protected] -MicrosoftOnlineServicesID ed@tailspintoys -Password (ConvertTo-SecureString -String 'P@ssw0rd1' -AsPlainText -Force)
186+
New-MailUser -Name "Ed Meadows" -ExternalEmailAddress [email protected] -MicrosoftOnlineServicesID ed@contoso.com -Password (ConvertTo-SecureString -String 'P@ssw0rd1' -AsPlainText -Force)
187187
```
188188

189189
This example creates a new mail user for Ed Meadows in the contoso.com cloud-based organization. The mail user gives Ed an account and email address in the contoso.com ___domain, but messages sent to Ed are delivered to his tailspintoys.com email address.

exchange/exchange-ps/exchange/New-RetentionCompliancePolicy.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@ The Applications parameter specifies the target when Microsoft 365 Groups are in
9999
100100
- `Group:Exchange` for the mailbox that's connected to the Microsoft 365 Group.
101101
- `Group:SharePoint` for the SharePoint site that's connected to the Microsoft 365 Group.
102-
- `"Group:Exchange","Group:SharePoint"` for both the mailbox and the SharePoint site that are connected to the Microsoft 365 Group.
103-
- blank (`$null`): This is the default value, and is functionally equivalent to the value `"Group:Exchange","Group:SharePoint"`.
102+
- `"Group:Exchange,SharePoint"` for both the mailbox and the SharePoint site that are connected to the Microsoft 365 Group.
103+
- blank (`$null`): This is the default value, and is functionally equivalent to the value `"Group:Exchange,SharePoint"`.
104104

105105
```yaml
106106
Type: MultiValuedProperty

exchange/exchange-ps/exchange/New-TransportRule.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -455,6 +455,8 @@ Accept wildcard characters: False
455455
```
456456

457457
### -AnyOfRecipientAddressContainsWords
458+
**Note**: In the cloud-based service, this parameter behaves the same as the RecipientAddressContainsWords parameter (other recipients in the message are not affected).
459+
458460
This parameter specifies a condition or part of a condition for the rule. The name of the corresponding exception parameter starts with ExceptIf.
459461

460462
In on-premises Exchange, this condition is available on Mailbox servers and Edge Transport servers.
@@ -479,6 +481,8 @@ Accept wildcard characters: False
479481
```
480482

481483
### -AnyOfRecipientAddressMatchesPatterns
484+
**Note**: In the cloud-based service, this parameter behaves the same as the RecipientAddressMatchesPatterns parameter (other recipients in the message are not affected).
485+
482486
This parameter specifies a condition or part of a condition for the rule. The name of the corresponding exception parameter starts with ExceptIf.
483487

484488
In on-premises Exchange, this condition is available on Mailbox servers and Edge Transport servers.
@@ -1469,6 +1473,8 @@ Accept wildcard characters: False
14691473
```
14701474

14711475
### -ExceptIfAnyOfRecipientAddressContainsWords
1476+
**Note**: In the cloud-based service, this parameter behaves the same as the ExceptIfRecipientAddressContainsWords parameter (other recipients in the message are not affected).
1477+
14721478
This parameter specifies an exception or part of an exception for the rule. The name of the corresponding condition doesn't include the ExceptIf prefix.
14731479

14741480
In on-premises Exchange, this exception is available on Mailbox servers and Edge Transport servers.
@@ -1493,6 +1499,8 @@ Accept wildcard characters: False
14931499
```
14941500

14951501
### -ExceptIfAnyOfRecipientAddressMatchesPatterns
1502+
**Note**: In the cloud-based service, this parameter behaves the same as the ExceptIfRecipientAddressMatchesPatterns parameter (other recipients in the message are not affected).
1503+
14961504
This parameter specifies an exception or part of an exception for the rule. The name of the corresponding condition doesn't include the ExceptIf prefix.
14971505

14981506
In on-premises Exchange, this exception is available on Mailbox servers and Edge Transport servers.

exchange/exchange-ps/exchange/Set-OrganizationConfig.md

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ Set-OrganizationConfig -ShortenEventScopeDefault <ShortenEventScopeMode>
7070
[-DistributionGroupNamingPolicy <DistributionGroupNamingPolicy>]
7171
[-ElcProcessingDisabled <Boolean>]
7272
[-EnableForwardingAddressSyncForMailboxes <Boolean>]
73+
[-EnableOutlookEvents <Boolean>]
7374
[-EndUserDLUpgradeFlowsDisabled <Boolean>]
7475
[-EwsAllowEntourage <Boolean>]
7576
[-EwsAllowList <MultiValuedProperty>]
@@ -1627,7 +1628,7 @@ Accept wildcard characters: False
16271628
### -EnableForwardingAddressSyncForMailboxes
16281629
This parameter is available only in the cloud-based service.
16291630

1630-
{{ Fill EnableForwardingAddressSyncForMailboxes Description }}
1631+
This parameter is reserved for internal Microsoft use.
16311632

16321633
```yaml
16331634
Type: Boolean
@@ -1660,6 +1661,27 @@ Accept pipeline input: False
16601661
Accept wildcard characters: False
16611662
```
16621663

1664+
### -EnableOutlookEvents
1665+
This parameter is available only in the cloud-based service.
1666+
1667+
The EnableOutlookEvents parameter specifies whether Outlook or Outlook on the web (formerly known as Outlook Web App) automatically discovers events from email messages and adds them to user calendars. Valid values are:
1668+
1669+
- $true: Discovery of events from email messages is enabled.
1670+
- $false: Discovery of events from email messages is disabled. This is the default value.
1671+
1672+
```yaml
1673+
Type: Boolean
1674+
Parameter Sets: (All)
1675+
Aliases:
1676+
Applicable: Exchange Online
1677+
1678+
Required: False
1679+
Position: Named
1680+
Default value: None
1681+
Accept pipeline input: False
1682+
Accept wildcard characters: False
1683+
```
1684+
16631685
### -EndUserDLUpgradeFlowsDisabled
16641686
This parameter is available only in the cloud-based service.
16651687

exchange/exchange-ps/exchange/Set-RetentionCompliancePolicy.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -475,8 +475,8 @@ The Applications parameter specifies the target when Microsoft 365 Groups are in
475475

476476
- `Group:Exchange` for the mailbox that's connected to the Microsoft 365 Group.
477477
- `Group:SharePoint` for the SharePoint site that's connected to the Microsoft 365 Group.
478-
- `"Group:Exchange","Group:SharePoint"` for both the mailbox and the SharePoint site that are connected to the Microsoft 365 Group.
479-
- blank (`$null`): This is the default value, and is functionally equivalent to the value `"Group:Exchange","Group:SharePoint"`.
478+
- `"Group:Exchange,SharePoint"` for both the mailbox and the SharePoint site that are connected to the Microsoft 365 Group.
479+
- blank (`$null`): This is the default value, and is functionally equivalent to the value `"Group:Exchange,SharePoint"`. To return to the default value of both the mailbox and SharePoint site for the selected Microsoft 365 groups, specify `"Group:Exchange,SharePoint"`.
480480

481481
```yaml
482482
Type: MultiValuedProperty

exchange/exchange-ps/exchange/Set-TransportRule.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -457,6 +457,8 @@ Accept wildcard characters: False
457457
```
458458

459459
### -AnyOfRecipientAddressContainsWords
460+
**Note**: In the cloud-based service, this parameter behaves the same as the RecipientAddressContainsWords parameter (other recipients in the message are not affected).
461+
460462
This parameter specifies a condition or part of a condition for the rule. The name of the corresponding exception parameter starts with ExceptIf.
461463

462464
In on-premises Exchange, this condition is available on Mailbox servers and Edge Transport servers.
@@ -481,6 +483,8 @@ Accept wildcard characters: False
481483
```
482484

483485
### -AnyOfRecipientAddressMatchesPatterns
486+
**Note**: In the cloud-based service, this parameter behaves the same as the RecipientAddressMatchesPatterns parameter (other recipients in the message are not affected).
487+
484488
This parameter specifies a condition or part of a condition for the rule. The name of the corresponding exception parameter starts with ExceptIf.
485489

486490
In on-premises Exchange, this condition is available on Mailbox servers and Edge Transport servers.
@@ -1450,6 +1454,8 @@ Accept wildcard characters: False
14501454
```
14511455

14521456
### -ExceptIfAnyOfRecipientAddressContainsWords
1457+
**Note**: In the cloud-based service, this parameter behaves the same as the ExceptIfRecipientAddressContainsWords parameter (other recipients in the message are not affected).
1458+
14531459
This parameter specifies an exception or part of an exception for the rule. The name of the corresponding condition doesn't include the ExceptIf prefix.
14541460

14551461
In on-premises Exchange, this exception is available on Mailbox servers and Edge Transport servers.
@@ -1474,6 +1480,8 @@ Accept wildcard characters: False
14741480
```
14751481

14761482
### -ExceptIfAnyOfRecipientAddressMatchesPatterns
1483+
**Note**: In the cloud-based service, this parameter behaves the same as the ExceptIfRecipientAddressMatchesPatterns parameter (other recipients in the message are not affected).
1484+
14771485
This parameter specifies an exception or part of an exception for the rule. The name of the corresponding condition doesn't include the ExceptIf prefix.
14781486

14791487
In on-premises Exchange, this exception is available on Mailbox servers and Edge Transport servers.
Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
---
2+
external help file: sharepointonline.xml
3+
Module Name: Microsoft.Online.SharePoint.PowerShell
4+
online version: https://docs.microsoft.com/powershell/module/sharepoint-online/get-spotenantrenamestatus
5+
applicable: SharePoint Online
6+
title: Get-SPOTenantRenameStatus
7+
schema: 2.0.0
8+
author: WayneEwington
9+
ms.author: waynewin
10+
ms.reviewer:
11+
---
12+
13+
# Get-SPOTenantRenameStatus
14+
15+
## SYNOPSIS
16+
17+
[!IMPORTANT]
18+
> - This feature is available only for customers who have been accepted into the Private Preview program. [Request to join the Private Preview](https://aka.ms/SPOTenantRenameNomination). Note that submitting a nomination does not guarantee acceptance into the program. We review the nominations on a case-by-case basis and will contact you if you're accepted.
19+
> - This feature is not available for organizations that have set up multi-geo.
20+
21+
Get the status of the job to change the SharePoint ___domain name for your organization in Microsoft 365.
22+
23+
## SYNTAX
24+
25+
```Powershell
26+
Get-SPOTenantRenameStatus [<CommonParameters>]
27+
```
28+
29+
## DESCRIPTION
30+
31+
This command gets the status of the job to rename the SharePoint ___domain name for your organization.
32+
33+
## EXAMPLES
34+
35+
### EXAMPLE 1
36+
37+
```powershell
38+
Gett-SPOTenantRenameStatus
39+
```
40+
41+
Gets the status of the job to rename your SharePoint ___domain name.
42+
43+
## PARAMETERS
44+
45+
### CommonParameters
46+
47+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).
48+
49+
## RELATED LINKS
50+
51+
[Getting started with SharePoint Online Management Shell](https://docs.microsoft.com/powershell/sharepoint/sharepoint-online/connect-sharepoint-online?view=sharepoint-ps)
52+
53+
[Rename your SharePoint ___domain](https://aka.ms/SPOTenantRename)
54+
55+
[Start-SPOTenantRename](Start-SPOTenantRename.md)
56+
57+
[Get-SPOSiteRenameState](Get-SPOSiteRenameState.md)
58+
59+
[Stop-SPOTenantRename](Stop-SPOTenantRename.md)

0 commit comments

Comments
 (0)