Skip to content

Commit 441fbe3

Browse files
authored
Merge branch 'master' into patch-338
2 parents 202f64a + c0d7e3d commit 441fbe3

File tree

5 files changed

+10
-43
lines changed

5 files changed

+10
-43
lines changed

exchange/docs-conceptual/app-only-auth-powershell-v2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ Create a self-signed x.509 certificate using one of the following methods:
207207

208208
## Step 4: Attach the certificate to the Azure AD application
209209

210-
After you register the certificate with your application, you can use the public key (`.pfx` file) or the thumbprint for authentication.
210+
After you register the certificate with your application, you can use the private key (`.pfx` file) or the thumbprint for authentication.
211211

212212
1. On the **Apps registration** page from the end of [Step 2](#step-2-assign-api-permissions-to-the-application), select your application.
213213

exchange/docs-conceptual/connect-to-scc-powershell.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ If your account uses multi-factor authentication, use the steps in this section.
7979
Connect-IPPSSession -UserPrincipalName -ConnectionUri https://l5.ps.compliance.protection.office365.us/powershell-liveid/
8080
```
8181

82-
For detailed syntax and parameter information, see [Connect-IPPSSession](/powershell/module/exchange/connect-exchangeonline).
82+
For detailed syntax and parameter information, see [Connect-IPPSSession](/powershell/module/exchange/connect-ippssession).
8383

8484
> [!NOTE]
8585
> Be sure to disconnect the remote PowerShell session when you're finished. If you close the Windows PowerShell window without disconnecting the session, you could use up all the remote PowerShell sessions available to you, and you'll need to wait for the sessions to expire. To disconnect the remote PowerShell session, run the following command.
@@ -146,7 +146,7 @@ If your account doesn't use multi-factor authentication, use the steps in this s
146146
Connect-IPPSSession -Credential $UserCredential -ConnectionUri https://l5.ps.compliance.protection.office365.us/powershell-liveid/ -AzureADAuthorizationEndpointUri https://login.microsoftonline.us/common
147147
```
148148

149-
For detailed syntax and parameter information, see [Connect-IPPSSession](/powershell/module/exchange/connect-exchangeonline).
149+
For detailed syntax and parameter information, see [Connect-IPPSSession](/powershell/module/exchange/connect-ippssession).
150150

151151
> [!NOTE]
152152
> Be sure to disconnect the remote PowerShell session when you're finished. If you close the Windows PowerShell window without disconnecting the session, you could use up all the remote PowerShell sessions available to you, and you'll need to wait for the sessions to expire. To disconnect the remote PowerShell session, run the following command:

exchange/exchange-ps/exchange/Get-MessageTrace.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ If you enter a start date that is older than 10 days, you will receive an error
4646

4747
To search for message data that is greater than 10 days old, use the Start-HistoricalSearch and Get-HistoricalSearch cmdlets.
4848

49-
This cmdlet returns a maximum of 1000000 results, and will timeout on very large queries. If your query returns too many results, consider splitting it up using smaller StartDate and EndDate intervals.
49+
By default, this cmdlet returns a maximum of 1000 results, and will timeout on very large queries. If your query returns too many results, consider splitting it up using smaller StartDate and EndDate intervals.
5050

5151
You need to be assigned permissions before you can run this cmdlet. Although this topic lists all parameters for the cmdlet, you may not have access to some parameters if they're not included in the permissions assigned to you. To find the permissions required to run any cmdlet or parameter in your organization, see [Find the permissions required to run any Exchange cmdlet](https://docs.microsoft.com/powershell/exchange/find-exchange-cmdlet-permissions).
5252

exchange/exchange-ps/exchange/Set-ExternalInOutlook.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,8 @@ The Enabled parameter enables or disables external sender identification in supp
105105
- $true: External sender identification in Outlook is enabled. An External icon is added in the area of the subject line of messages from external senders. To exempt specific senders or sender domains from this identification, use the AllowList parameter.
106106
- $false: External sender identification in Outlook is disabled.
107107

108+
After an admin enables this setting, it can take between 24 and 48 hours for users to see the External icon in messages from external senders in supported versions of Outlook.
109+
108110
```yaml
109111
Type: System.Boolean
110112
Parameter Sets: (All)

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

Lines changed: 4 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,6 @@ Set-OrganizationConfig -ShortenEventScopeDefault <ShortenEventScopeMode>
5656
[-CustomerLockboxEnabled <Boolean>]
5757
[-DefaultAuthenticationPolicy <AuthPolicyIdParameter>]
5858
[-DefaultGroupAccessType <ModernGroupObjectType>]
59-
[-DefaultMinutesToReduceLongEventsBy <Int32>]
60-
[-DefaultMinutesToReduceShortEventsBy <Int32>]
6159
[-DefaultPublicFolderAgeLimit <EnhancedTimeSpan>]
6260
[-DefaultPublicFolderDeletedItemRetention <EnhancedTimeSpan>]
6361
[-DefaultPublicFolderIssueWarningQuota <Unlimited>]
@@ -1230,42 +1228,6 @@ Accept pipeline input: False
12301228
Accept wildcard characters: False
12311229
```
12321230

1233-
### -DefaultMinutesToReduceLongEventsBy
1234-
This parameter is available only in the cloud-based service.
1235-
1236-
{{ Fill DefaultMinutesToReduceLongEventsBy Description }}
1237-
1238-
```yaml
1239-
Type: Int32
1240-
Parameter Sets: ShortenEventScopeParameter
1241-
Aliases:
1242-
Applicable: Exchange Online
1243-
1244-
Required: False
1245-
Position: Named
1246-
Default value: None
1247-
Accept pipeline input: False
1248-
Accept wildcard characters: False
1249-
```
1250-
1251-
### -DefaultMinutesToReduceShortEventsBy
1252-
This parameter is available only in the cloud-based service.
1253-
1254-
{{ Fill DefaultMinutesToReduceShortEventsBy Description }}
1255-
1256-
```yaml
1257-
Type: Int32
1258-
Parameter Sets: ShortenEventScopeParameter
1259-
Aliases:
1260-
Applicable: Exchange Online
1261-
1262-
Required: False
1263-
Position: Named
1264-
Default value: None
1265-
Accept pipeline input: False
1266-
Accept wildcard characters: False
1267-
```
1268-
12691231
### -DefaultPublicFolderAgeLimit
12701232
The DefaultPublicFolderAgeLimit parameter specifies the default age limit for the contents of public folders across the entire organization. Content in a public folder is automatically deleted when this age limit is exceeded. This attribute applies to all public folders in the organization that don't have their own AgeLimit setting.
12711233

@@ -3141,7 +3103,10 @@ Accept wildcard characters: False
31413103
### -WorkspaceTenantEnabled
31423104
This parameter is available only in the cloud-based service.
31433105

3144-
{{ Fill WorkspaceTenantEnabled Description }}
3106+
The WorkspaceTenantEnabled parameter enables or disables workspace booking in the organization. Valid values are:
3107+
3108+
- $true: In Outlook for iOS and Android, the calendar setting for workspace booking is visible and is off by default.
3109+
- $false: In Outlook for iOS and Android, the calendar setting for workspace booking is hidden.
31453110

31463111
```yaml
31473112
Type: Boolean

0 commit comments

Comments
 (0)