Skip to content

Commit 65852f2

Browse files
authored
Merge branch 'master' into Dariomws4
2 parents 3da31dd + 8dba834 commit 65852f2

File tree

6 files changed

+101
-47
lines changed

6 files changed

+101
-47
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ Accept wildcard characters: False
9292
```
9393
9494
### -MessageId
95-
The MessageId parameter filters the results by the Message-ID header field of the message. This value is also known as the Client ID. The format of the Message-ID depends on the messaging server that sent the message. The value should be unique for each message. However, not all messaging servers create values for the Message-ID in the same way. Be sure to include the full Message ID string. This may include angle brackets.
95+
The MessageId parameter filters the results by the Message-ID header field of the message. This value is also known as the Client ID. The format of the Message-ID depends on the messaging server that sent the message. The value should be unique for each message. However, not all messaging servers create values for the Message-ID in the same way. Be sure to include the full Message ID string (which may include angle brackets) and enclose the value in quotation marks (for example, "<d9683b4c-127b-413a-ae2e-fa7dfb32c69d@DM3NAM06BG401.Eop-nam06.prod.protection.outlook.com>").
9696
9797
```yaml
9898
Type: MultiValuedProperty

exchange/exchange-ps/exchange/move-and-migration/Get-PublicFolderMailboxMigrationRequest.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,20 @@ Get-PublicFolderMailboxMigrationRequest -HighPriority $true
6565

6666
In on-premises Exchange, this example returns all migration requests that have a priority value of High, Higher, Highest or Emergency.
6767

68+
### -------------------------- Example 3 --------------------------
69+
```
70+
Get-PublicFolderMailboxMigrationRequest | ?{$_.TargetMailbox -eq $null}
71+
```
72+
73+
This example returns public folder mailbox migration requests that don't have a target mailbox.
74+
75+
### -------------------------- Example 4 --------------------------
76+
```
77+
Get-PublicFolderMailboxMigrationRequest | group TargetMailbox |?{$_.Count -gt 1}
78+
```
79+
80+
This example returns duplicate public folder migration requests (requests created for the same target mailbox). If the command returns no results, then there are no duplicate migration requests.
81+
6882
## PARAMETERS
6983

7084
### -BatchName

exchange/exchange-ps/exchange/move-and-migration/Remove-PublicFolderMailboxMigrationRequest.md

Lines changed: 35 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
---
22
external help file: Microsoft.Exchange.ProvisioningAndMigration-Help.xml
3-
applicable: Exchange Server 2013, Exchange Server 2016, Exchange Server 2019
3+
applicable: Exchange Server 2013, Exchange Server 2016, Exchange Server 2019, Exchange Online
44
title: Remove-PublicFolderMailboxMigrationRequest
55
schema: 2.0.0
6-
monikerRange: "exchserver-ps-2013 || exchserver-ps-2016 || exchserver-ps-2019"
6+
monikerRange: "exchserver-ps-2013 || exchserver-ps-2016 || exchserver-ps-2019 || exchonline-ps"
77
---
88

99
# Remove-PublicFolderMailboxMigrationRequest
1010

1111
## SYNOPSIS
12-
This cmdlet is available only in on-premises Exchange.
12+
This cmdlet is available in on-premises Exchange and in the cloud-based service. Some parameters and settings may be exclusive to one environment or the other.
1313

1414
Use the Remove-PublicFolderMailboxMigrationRequest cmdlet to remove individual jobs from public folder migration batches that were created by using the New-MigrationBatch cmdlet.
1515

@@ -35,8 +35,6 @@ Remove-PublicFolderMailboxMigrationRequest -RequestGuid <Guid> -RequestQueue <Da
3535
```
3636

3737
## DESCRIPTION
38-
The Remove-PublicFolderMailboxMigrationRequest cmdlet is intended for troubleshooting and should be used under the direction of Microsoft Customer Service and Support.
39-
4038
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://technet.microsoft.com/library/mt432940.aspx).
4139

4240
## EXAMPLES
@@ -48,6 +46,22 @@ Remove-PublicFolderMailboxMigrationRequest -Identity \PublicFolderMailboxMigrati
4846

4947
This example removes the specified public folder mailbox migration request.
5048

49+
### -------------------------- Example 2 --------------------------
50+
```
51+
Get-PublicFolderMailboxMigrationRequest | ?{$_.TargetMailbox -eq $null}
52+
```
53+
54+
This example returns public folder mailbox migration requests that don't have a target mailbox. To remove these orphaned migration requests, add " | Remove-PublicFolderMailboxMigrationRequest" to the end of the command.
55+
56+
### -------------------------- Example 3 --------------------------
57+
```
58+
Get-PublicFolderMailboxMigrationRequest | group TargetMailbox |?{$_.Count -gt 1}
59+
```
60+
61+
This example returns duplicate public folder migration requests (requests created for the same target mailbox). If the command returns no results, then there are no duplicate migration requests.
62+
63+
A sample script is provided here: (https://gallery.technet.microsoft.com/scriptcenter/Remove-Duplicate-public-055f0e5e) to detect duplicate or orphaned public folder mailbox migration requests and also remove them.
64+
5165
## PARAMETERS
5266

5367
### -Identity
@@ -59,7 +73,7 @@ You can't use this parameter with the RequestGuid or RequestQueue parameters.
5973
Type: PublicFolderMailboxMigrationRequestIdParameter
6074
Parameter Sets: Identity
6175
Aliases:
62-
Applicable: Exchange Server 2013, Exchange Server 2016, Exchange Server 2019
76+
Applicable: Exchange Server 2013, Exchange Server 2016, Exchange Server 2019, Exchange Online
6377
Required: True
6478
Position: 1
6579
Default value: None
@@ -76,7 +90,7 @@ If you use this parameter, you also need to use the RequestQueue parameter. You
7690
Type: Guid
7791
Parameter Sets: MigrationRequestQueue
7892
Aliases:
79-
Applicable: Exchange Server 2013, Exchange Server 2016, Exchange Server 2019
93+
Applicable: Exchange Server 2013, Exchange Server 2016, Exchange Server 2019, Exchange Online
8094
Required: True
8195
Position: Named
8296
Default value: None
@@ -97,7 +111,7 @@ You can't use this parameter with the Identity parameter.
97111
Type: DatabaseIdParameter
98112
Parameter Sets: MigrationRequestQueue
99113
Aliases:
100-
Applicable: Exchange Server 2013, Exchange Server 2016, Exchange Server 2019
114+
Applicable: Exchange Server 2013, Exchange Server 2016, Exchange Server 2019, Exchange Online
101115
Required: True
102116
Position: Named
103117
Default value: None
@@ -116,7 +130,7 @@ The Confirm switch specifies whether to show or hide the confirmation prompt. Ho
116130
Type: SwitchParameter
117131
Parameter Sets: (All)
118132
Aliases: cf
119-
Applicable: Exchange Server 2013, Exchange Server 2016, Exchange Server 2019
133+
Applicable: Exchange Server 2013, Exchange Server 2016, Exchange Server 2019, Exchange Online
120134
Required: False
121135
Position: Named
122136
Default value: None
@@ -125,6 +139,8 @@ Accept wildcard characters: False
125139
```
126140
127141
### -DomainController
142+
This parameter is available only in on-premises Exchange.
143+
128144
The DomainController parameter specifies the domain controller that's used by this cmdlet to read data from or write data to Active Directory. You identify the domain controller by its fully qualified domain name (FQDN). For example, dc01.contoso.com.
129145
130146
```yaml
@@ -139,29 +155,29 @@ Accept pipeline input: False
139155
Accept wildcard characters: False
140156
```
141157
142-
### -WhatIf
143-
The WhatIf switch simulates the actions of the command. You can use this switch to view the changes that would occur without actually applying those changes. You don't need to specify a value with this switch.
158+
### -Force
159+
The Force switch specifies whether to suppress warning or confirmation messages. You can use this switch to run tasks programmatically where prompting for administrative input is inappropriate. You don't need to specify a value with this switch.
144160
145161
```yaml
146162
Type: SwitchParameter
147-
Parameter Sets: (All)
148-
Aliases: wi
149-
Applicable: Exchange Server 2013, Exchange Server 2016, Exchange Server 2019
163+
Parameter Sets: Identity
164+
Aliases:
165+
Applicable: Exchange Server 2016, Exchange Server 2019, Exchange Online
150166
Required: False
151167
Position: Named
152168
Default value: None
153169
Accept pipeline input: False
154170
Accept wildcard characters: False
155171
```
156172
157-
### -Force
158-
The Force switch specifies whether to suppress warning or confirmation messages. You can use this switch to run tasks programmatically where prompting for administrative input is inappropriate. You don't need to specify a value with this switch.
173+
### -WhatIf
174+
The WhatIf switch simulates the actions of the command. You can use this switch to view the changes that would occur without actually applying those changes. You don't need to specify a value with this switch.
159175
160176
```yaml
161177
Type: SwitchParameter
162-
Parameter Sets: Identity
163-
Aliases:
164-
Applicable: Exchange Server 2016, Exchange Server 2019
178+
Parameter Sets: (All)
179+
Aliases: wi
180+
Applicable: Exchange Server 2013, Exchange Server 2016, Exchange Server 2019, Exchange Online
165181
Required: False
166182
Position: Named
167183
Default value: None

exchange/exchange-ps/exchange/policy-and-compliance-audit/Search-UnifiedAuditLog.md

Lines changed: 19 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,19 @@ For information about the parameter sets in the Syntax section below, see Exchan
1818
## SYNTAX
1919

2020
```
21-
Search-UnifiedAuditLog -EndDate <ExDateTime> -StartDate <ExDateTime> [-Formatted] [-FreeText <String>]
22-
[-IPAddresses <String[]>] [-ObjectIds <String[]>] [-Operations <String[]>]
23-
[-RecordType <ExchangeAdmin | ExchangeItem | ExchangeItemGroup | SharePoint | SyntheticProbe | SharePointFileOperation | OneDrive | AzureActiveDirectory | AzureActiveDirectoryAccountLogon | DataCenterSecurityCmdlet | ComplianceDLPSharePoint | Sway | ComplianceDLPExchange | SharePointSharingOperation | AzureActiveDirectoryStsLogon | SkypeForBusinessPSTNUsage | SkypeForBusinessUsersBlocked | SecurityComplianceCenterEOPCmdlet | ExchangeAggregatedOperation | PowerBIAudit | CRM | Yammer | SkypeForBusinessCmdlets | Discovery | MicrosoftTeams | MicrosoftTeamsAddOns | MicrosoftTeamsSettingsOperation | ThreatIntelligence>]
24-
[-ResultSize <Int32>] [-SessionCommand <Initialize | ReturnLargeSet | ReturnNextPreviewPage>]
25-
[-SessionId <String>] [-SiteIds <String[]>] [-UserIds <String[]>] [<CommonParameters>]
21+
Search-UnifiedAuditLog -EndDate <ExDateTime> -StartDate <ExDateTime>
22+
[-Formatted]
23+
[-FreeText <String>]
24+
[-IPAddresses <String[]>]
25+
[-ObjectIds <String[]>]
26+
[-Operations <String[]>]
27+
[-RecordType <AzureActiveDirectory | AzureActiveDirectoryAccountLogon | AzureActiveDirectoryStsLogon | CRM | ComplianceDLPExchange | ComplianceDLPSharePoint | DataCenterSecurityCmdlet | Discovery | ExchangeAdmin | ExchangeAggregatedOperation | ExchangeItem | ExchangeItemGroup | MicrosoftTeams | MicrosoftTeamsAddOns | MicrosoftTeamsSettingsOperation | OneDrive | PowerBIAudit | SecurityComplianceAlerts | SecurityComplianceCenterEOPCmdlet | SecurityComplianceInsights | SharePoint | SharePointFileOperation | SharePointSharingOperation | SkypeForBusinessCmdlets | SkypeForBusinessPSTNUsage | SkypeForBusinessUsersBlocked | Sway | ThreatIntelligence | Yammer>]
28+
[-ResultSize <Int32>]
29+
[-SessionCommand <Initialize | ReturnLargeSet | ReturnNextPreviewPage>]
30+
[-SessionId <String>]
31+
[-SiteIds <String[]>]
32+
[-UserIds <String[]>]
33+
[<CommonParameters>]
2634
```
2735

2836
## DESCRIPTION
@@ -201,9 +209,7 @@ Accept wildcard characters: False
201209
```
202210
203211
### -RecordType
204-
The RecordType parameter filters the log entries by record type.
205-
206-
Valid values are:
212+
The RecordType parameter filters the log entries by record type. Valid values are:
207213
208214
- AzureActiveDirectory
209215
@@ -239,8 +245,12 @@ Valid values are:
239245
240246
- PowerBIAudit
241247
248+
- SecurityComplianceAlerts
249+
242250
- SecurityComplianceCenterEOPCmdlet
243251
252+
- SecurityComplianceInsights
253+
244254
- SharePoint
245255
246256
- SharePointFileOperation
@@ -260,7 +270,7 @@ Valid values are:
260270
- Yammer
261271
262272
```yaml
263-
Type: ExchangeAdmin | ExchangeItem | ExchangeItemGroup | SharePoint | SyntheticProbe | SharePointFileOperation | OneDrive | AzureActiveDirectory | AzureActiveDirectoryAccountLogon | DataCenterSecurityCmdlet | ComplianceDLPSharePoint | Sway | ComplianceDLPExchange | SharePointSharingOperation | AzureActiveDirectoryStsLogon | SkypeForBusinessPSTNUsage | SkypeForBusinessUsersBlocked | SecurityComplianceCenterEOPCmdlet | ExchangeAggregatedOperation | PowerBIAudit | CRM | Yammer | SkypeForBusinessCmdlets | Discovery | MicrosoftTeams | MicrosoftTeamsAddOns | MicrosoftTeamsSettingsOperation | ThreatIntelligence
273+
Type: AzureActiveDirectory | AzureActiveDirectoryAccountLogon | AzureActiveDirectoryStsLogon | CRM | ComplianceDLPExchange | ComplianceDLPSharePoint | DataCenterSecurityCmdlet | Discovery | ExchangeAdmin | ExchangeAggregatedOperation | ExchangeItem | ExchangeItemGroup | MicrosoftTeams | MicrosoftTeamsAddOns | MicrosoftTeamsSettingsOperation | OneDrive | PowerBIAudit | SecurityComplianceAlerts | SecurityComplianceCenterEOPCmdlet | SecurityComplianceInsights | SharePoint | SharePointFileOperation | SharePointSharingOperation | SkypeForBusinessCmdlets | SkypeForBusinessPSTNUsage | SkypeForBusinessUsersBlocked | Sway | ThreatIntelligence | Yammer
264274
Parameter Sets: (All)
265275
Aliases:
266276
Applicable: Exchange Online

0 commit comments

Comments
 (0)