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/app-only-auth-powershell-v2.md
+14-3Lines changed: 14 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -145,7 +145,18 @@ You need to assign the API permission `Exchange.ManageAsApp` so the application
145
145
146
146
Create a self-signed x.509 certificate using one of the following methods:
147
147
148
-
- (Recommended) Use the [New-SelfSignedCertificate](https://docs.microsoft.com/powershell/module/pkiclient/new-selfsignedcertificate) and [Export-PfxCertificate](https://docs.microsoft.com/powershell/module/pkiclient/export-pfxcertificate) cmdlets to request a self-signed certificate and export it to PFX.
148
+
- (Recommended) Use the [New-SelfSignedCertificate](https://docs.microsoft.com/powershell/module/pkiclient/new-selfsignedcertificate), [Export-Certificate](https://docs.microsoft.com/powershell/module/pkiclient/export-certificate) and [Export-PfxCertificate](https://docs.microsoft.com/powershell/module/pkiclient/export-pfxcertificate) cmdlets to request a self-signed certificate and export it to `.cer` and `.pfx`.
- Use the [Create-SelfSignedCertificate script](https://github.com/SharePoint/PnP-Partner-Pack/blob/master/scripts/Create-SelfSignedCertificate.ps1). Note that this script generates SHA1 certificates.
151
162
@@ -155,7 +166,7 @@ Create a self-signed x.509 certificate using one of the following methods:
155
166
156
167
## Step 4: Attach the certificate to the Azure AD application
157
168
158
-
After you register the certificate with your application, you can use the public key (.pfx file) or the thumbprint for authentication.
169
+
After you register the certificate with your application, you can use the public key (`.pfx` file) or the thumbprint for authentication.
159
170
160
171
1. In the Azure AD portal under **Manage Azure Active Directory**, click **View**.
161
172
@@ -169,7 +180,7 @@ After you register the certificate with your application, you can use the public
This parameter is available only in the cloud-based service.
497
+
498
+
The AllowPlusAddressInRecipients parameter enables or disables dynamic, disposable subaddressing as defined in RFC 5233. Valid values are:
499
+
500
+
- $true: The plus sign in an email address indicates subaddressing. For example, mail sent to [email protected] is delivered to [email protected]. For customers who enrolled in Exchange Online after September 2020, this is the default value.
501
+
502
+
- $false: The plus sign in an email address is treated as a literal character. For example, mail sent to [email protected] is delivered only if [email protected] is configured as the primary address or a proxy address on an existing recipient. For customers who enrolled in Exchange Online before September 2020, this is the default value.
503
+
504
+
```yaml
505
+
Type: Boolean
506
+
Parameter Sets: Default
507
+
Aliases:
508
+
Applicable: Exchange Online
509
+
510
+
Required: False
511
+
Position: Named
512
+
Default value: None
513
+
Accept pipeline input: False
514
+
Accept wildcard characters: False
515
+
```
516
+
494
517
### -AppsForOfficeEnabled
495
518
The AppsForOfficeEnabled parameter specifies whether to enable apps for Outlook features. By default, the parameter is set to $true. If the flag is set to $false, no new apps can be activated for any user in the organization.
The AlwaysSubscribeMembersToCalendarEvents switch controls the default subscription settings of new members that are added to the Microsoft 365 Group. Changing this setting doesn't affect existing group members.
218
218
219
-
- If you use this switch without a value, all future members that are added to the group will have their subscriptions set to ReplyAndEvents.
219
+
- If you use this switch without a value, all future members that are added to the group will have their subscriptions set to ReplyAndEvents. Previous events are not automatically added to their calendars.
220
220
221
-
- If you use this exact syntax: -AlwaysSubscribeMembersToCalendarEvents:$false, all future members that are added to the group will have their subscriptions set to ReplyOnly.
221
+
- If you use this exact syntax: `-AlwaysSubscribeMembersToCalendarEvents:$false,` all future members that are added to the group will have their subscriptions set to ReplyOnly.
222
222
223
223
Group members can change their own subscription settings, which can override your intended use of this switch.
0 commit comments