Skip to content

Commit c35dd92

Browse files
authored
Merge pull request MicrosoftDocs#4070 from dariomws306/patch-50
Patch 50
2 parents 530d6f7 + 2706213 commit c35dd92

File tree

7 files changed

+44
-2
lines changed

7 files changed

+44
-2
lines changed

exchange/exchange-ps/exchange/federation-and-hybrid/Set-RemoteMailbox.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -662,6 +662,8 @@ To specify the primary SMTP email address, you can use any of the following meth
662662
663663
- Use the PrimarySmtpAddress parameter instead. You can't use the EmailAddresses parameter and the PrimarySmtpAddress parameter in the same command.
664664
665+
The PrimarySmtpAddress parameter updates the primary email address and WindowsEmailAddress property to the same value.
666+
665667
To replace all existing proxy email addresses with the values you specify, use the following syntax: "\<Type\>:\<emailaddress1\>","\<Type\>:\<emailaddress2\>",..."\<Type\>:\<emailaddressN\>".
666668
667669
To add or remove specify proxy addresses without affecting other existing values, use the following syntax: @{Add="\<Type\>:\<emailaddress1\>","\<Type\>:\<emailaddress2\>",...; Remove="\<Type\>:\<emailaddress2\>","\<Type\>:\<emailaddress2\>",...}.
@@ -1007,6 +1009,10 @@ Accept wildcard characters: False
10071009
### -PrimarySmtpAddress
10081010
The PrimarySmtpAddress parameter specifies the primary return email address that's used for the recipient. You can't use the EmailAddresses and PrimarySmtpAddress parameters in the same command.
10091011
1012+
If you set the EmailAddressPolicyEnabled parameter to $false, you can specify the primary address using the PrimarySmtpAddress parameter, but that means the email addresses of the mail user no longer automatically updated by email address policies.
1013+
1014+
The PrimarySmtpAddress parameter updates the primary email address and WindowsEmailAddress property to the same value.
1015+
10101016
```yaml
10111017
Type: SmtpAddress
10121018
Parameter Sets: (All)

exchange/exchange-ps/exchange/mailboxes/Set-Mailbox.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2371,6 +2371,8 @@ To specify the primary SMTP email address, you can use any of the following meth
23712371
23722372
- Use the PrimarySmtpAddress parameter instead. You can't use the EmailAddresses parameter and the PrimarySmtpAddress parameter in the same command.
23732373
2374+
The PrimarySmtpAddress parameter updates the primary email address and WindowsEmailAddress property to the same value.
2375+
23742376
To replace all existing proxy email addresses with the values you specify, use the following syntax: "\<Type\>:\<emailaddress1\>","\<Type\>:\<emailaddress2\>",..."\<Type\>:\<emailaddressN\>".
23752377
23762378
To add or remove specify proxy addresses without affecting other existing values, use the following syntax: @{Add="\<Type\>:\<emailaddress1\>","\<Type\>:\<emailaddress2\>",...; Remove="\<Type\>:\<emailaddress2\>","\<Type\>:\<emailaddress2\>",...}.
@@ -3905,6 +3907,8 @@ The PrimarySmtpAddress parameter specifies the primary return email address that
39053907

39063908
If you set the EmailAddressPolicyEnabled parameter to $false, you can specify the primary address using the PrimarySmtpAddress parameter, but that means the email addresses of the mail user no longer automatically updated by email address policies.
39073909

3910+
The PrimarySmtpAddress parameter updates the primary email address and WindowsEmailAddress property to the same value.
3911+
39083912
```yaml
39093913
Type: SmtpAddress
39103914
Parameter Sets: Identity

exchange/exchange-ps/exchange/sharing-and-collaboration/Set-MailPublicFolder.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -700,6 +700,8 @@ To specify the primary SMTP email address, you can use any of the following meth
700700
701701
- Use the PrimarySmtpAddress parameter instead. You can't use the EmailAddresses parameter and the PrimarySmtpAddress parameter in the same command.
702702
703+
The PrimarySmtpAddress parameter updates the primary email address and WindowsEmailAddress property to the same value.
704+
703705
To replace all existing proxy email addresses with the values you specify, use the following syntax: "\<Type\>:\<emailaddress1\>","\<Type\>:\<emailaddress2\>",..."\<Type\>:\<emailaddressN\>".
704706
705707
To add or remove specify proxy addresses without affecting other existing values, use the following syntax: @{Add="\<Type\>:\<emailaddress1\>","\<Type\>:\<emailaddress2\>",...; Remove="\<Type\>:\<emailaddress2\>","\<Type\>:\<emailaddress2\>",...}.
@@ -1213,7 +1215,11 @@ Accept wildcard characters: False
12131215
```
12141216
12151217
### -PrimarySmtpAddress
1216-
The PrimarySmtpAddress parameter specifies the primary return email address that's used for the recipient.
1218+
The PrimarySmtpAddress parameter specifies the primary return email address that's used for the recipient. You can't use the EmailAddresses and PrimarySmtpAddress parameters in the same command.
1219+
1220+
If you set the EmailAddressPolicyEnabled parameter to $false, you can specify the primary address using the PrimarySmtpAddress parameter, but that means the email addresses of the mail user no longer automatically updated by email address policies.
1221+
1222+
The PrimarySmtpAddress parameter updates the primary email address and WindowsEmailAddress property to the same value.
12171223
12181224
```yaml
12191225
Type: SmtpAddress
@@ -1484,7 +1490,13 @@ Accept wildcard characters: False
14841490
```
14851491
14861492
### -WindowsEmailAddress
1487-
The WindowsEmailAddress parameter specifies an email address in the format [email protected].
1493+
The WindowsEmailAddress parameter specifies the Windows email address for this recipient. This is a common Active Directory attribute that's present in all environments, including environments without Exchange. Using the WindowsEmailAddress parameter on a recipient has one of the following results:
1494+
1495+
- In environments where the recipient is subject to email address policies (the EmailAddressPolicyEnabled property is set to the value True for the recipient), the WindowsEmailAddress parameter has no effect on the WindowsEmailAddress property or the primary email address value.
1496+
1497+
- In environments where the recipient isn't subject to email address policies (the EmailAddressPolicyEnabled property is set to the value False for the recipient), the WindowsEmailAddress parameter updates the WindowsEmailAddress property and the primary email address to the same value.
1498+
1499+
The WindowsEmailAddress property is visible for the recipient in Active Directory Users and Computers in the E-mail attribute. The attribute common name is E-mail-Addresses, and the Ldap-Display-Name is mail. If you modify this attribute in Active Directory, the recipient's primary email address is not updated to the same value.
14881500
14891501
```yaml
14901502
Type: SmtpAddress

exchange/exchange-ps/exchange/users-and-groups/Set-DistributionGroup.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -720,6 +720,8 @@ To specify the primary SMTP email address, you can use any of the following meth
720720
721721
- Use the PrimarySmtpAddress parameter instead. You can't use the EmailAddresses parameter and the PrimarySmtpAddress parameter in the same command.
722722
723+
The PrimarySmtpAddress parameter updates the primary email address and WindowsEmailAddress property to the same value.
724+
723725
To replace all existing proxy email addresses with the values you specify, use the following syntax: "\<Type\>:\<emailaddress1\>","\<Type\>:\<emailaddress2\>",..."\<Type\>:\<emailaddressN\>".
724726
725727
To add or remove specify proxy addresses without affecting other existing values, use the following syntax: @{Add="\<Type\>:\<emailaddress1\>","\<Type\>:\<emailaddress2\>",...; Remove="\<Type\>:\<emailaddress2\>","\<Type\>:\<emailaddress2\>",...}.
@@ -1281,6 +1283,10 @@ Accept wildcard characters: False
12811283
### -PrimarySmtpAddress
12821284
The PrimarySmtpAddress parameter specifies the primary return email address that's used for the recipient. You can't use the EmailAddresses and PrimarySmtpAddress parameters in the same command.
12831285
1286+
If you set the EmailAddressPolicyEnabled parameter to $false, you can specify the primary address using the PrimarySmtpAddress parameter, but that means the email addresses of the mail user no longer automatically updated by email address policies.
1287+
1288+
The PrimarySmtpAddress parameter updates the primary email address and WindowsEmailAddress property to the same value.
1289+
12841290
```yaml
12851291
Type: SmtpAddress
12861292
Parameter Sets: (All)

exchange/exchange-ps/exchange/users-and-groups/Set-DynamicDistributionGroup.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1087,6 +1087,8 @@ To specify the primary SMTP email address, you can use any of the following meth
10871087
10881088
- Use the PrimarySmtpAddress parameter instead. You can't use the EmailAddresses parameter and the PrimarySmtpAddress parameter in the same command.
10891089
1090+
The PrimarySmtpAddress parameter updates the primary email address and WindowsEmailAddress property to the same value.
1091+
10901092
To replace all existing proxy email addresses with the values you specify, use the following syntax: "\<Type\>:\<emailaddress1\>","\<Type\>:\<emailaddress2\>",..."\<Type\>:\<emailaddressN\>".
10911093
10921094
To add or remove specify proxy addresses without affecting other existing values, use the following syntax: @{Add="\<Type\>:\<emailaddress1\>","\<Type\>:\<emailaddress2\>",...; Remove="\<Type\>:\<emailaddress2\>","\<Type\>:\<emailaddress2\>",...}.
@@ -1650,6 +1652,10 @@ Accept wildcard characters: False
16501652
### -PrimarySmtpAddress
16511653
The PrimarySmtpAddress parameter specifies the primary return email address that's used for the recipient. You can't use the EmailAddresses and PrimarySmtpAddress parameters in the same command.
16521654
1655+
If you set the EmailAddressPolicyEnabled parameter to $false, you can specify the primary address using the PrimarySmtpAddress parameter, but that means the email addresses of the mail user no longer automatically updated by email address policies.
1656+
1657+
The PrimarySmtpAddress parameter updates the primary email address and WindowsEmailAddress property to the same value.
1658+
16531659
```yaml
16541660
Type: SmtpAddress
16551661
Parameter Sets: (All)

exchange/exchange-ps/exchange/users-and-groups/Set-MailContact.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -662,6 +662,8 @@ To specify the primary SMTP email address, you can use any of the following meth
662662
663663
- Use the PrimarySmtpAddress parameter instead. You can't use the EmailAddresses parameter and the PrimarySmtpAddress parameter in the same command.
664664
665+
The PrimarySmtpAddress parameter updates the primary email address and WindowsEmailAddress property to the same value.
666+
665667
To replace all existing proxy email addresses with the values you specify, use the following syntax: "\<Type\>:\<emailaddress1\>","\<Type\>:\<emailaddress2\>",..."\<Type\>:\<emailaddressN\>".
666668
667669
To add or remove specify proxy addresses without affecting other existing values, use the following syntax: @{Add="\<Type\>:\<emailaddress1\>","\<Type\>:\<emailaddress2\>",...; Remove="\<Type\>:\<emailaddress2\>","\<Type\>:\<emailaddress2\>",...}.
@@ -1219,6 +1221,8 @@ By default, the primary address is the same as the ExternalEmailAddress paramete
12191221
12201222
If you set the EmailAddressPolicyEnabled parameter to $false, you can specify the primary address using the PrimarySmtpAddress parameter, which means the email addresses of the mail contact aren't automatically updated by email address policies. We recommend that you don't set the primary email address to a value other than the ExternalEmailAddress unless you're in a cross-forest scenario.
12211223
1224+
The PrimarySmtpAddress parameter updates the primary email address and WindowsEmailAddress property to the same value.
1225+
12221226
```yaml
12231227
Type: SmtpAddress
12241228
Parameter Sets: (All)

exchange/exchange-ps/exchange/users-and-groups/Set-MailUser.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -740,6 +740,8 @@ To specify the primary SMTP email address, you can use any of the following meth
740740
741741
- Use the PrimarySmtpAddress parameter instead. You can't use the EmailAddresses parameter and the PrimarySmtpAddress parameter in the same command.
742742
743+
The PrimarySmtpAddress parameter updates the primary email address and WindowsEmailAddress property to the same value.
744+
743745
To replace all existing proxy email addresses with the values you specify, use the following syntax: "\<Type\>:\<emailaddress1\>","\<Type\>:\<emailaddress2\>",..."\<Type\>:\<emailaddressN\>".
744746
745747
To add or remove specify proxy addresses without affecting other existing values, use the following syntax: @{Add="\<Type\>:\<emailaddress1\>","\<Type\>:\<emailaddress2\>",...; Remove="\<Type\>:\<emailaddress2\>","\<Type\>:\<emailaddress2\>",...}.
@@ -1391,6 +1393,8 @@ By default, the primary address is the same as the ExternalEmailAddress paramete
13911393

13921394
If you set the EmailAddressPolicyEnabled parameter to $false, you can specify the primary address using the PrimarySmtpAddress parameter, but that means the email addresses of the mail user are no longer automatically updated by email address policies. We recommend that you don't set the primary email address to a value other than the ExternalEmailAddress unless you're in a cross-forest scenario.
13931395

1396+
The PrimarySmtpAddress parameter updates the primary email address and WindowsEmailAddress property to the same value.
1397+
13941398
```yaml
13951399
Type: SmtpAddress
13961400
Parameter Sets: (All)

0 commit comments

Comments
 (0)