Skip to content

Commit e42b49a

Browse files
authored
Merge pull request MicrosoftDocs#9457 from MicrosoftDocs/chrisda
Chrisda to Main
2 parents f719538 + 71c2b84 commit e42b49a

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

exchange/exchange-ps/exchange/Get-MailboxImportRequestStatistics.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,8 @@ This example returns additional information for all the import requests that hav
110110
### -Identity
111111
The Identity parameter specifies the identity of the import request. By default, import requests are named `<alias>\MailboxImportX` (where X = 0-9). If you specified a name when you created the import request, use the following syntax: `Alias\Name`.
112112

113+
**Note**: In Exchange Online, the alias of a soft-deleted mailbox might match the alias of an active mailbox. To ensure uniqueness, use the RequestGuid value from the output of the Get-MailboxImportRequest cmdlet for the value of this parameter.
114+
113115
```yaml
114116
Type: MailboxImportRequestIdParameter
115117
Parameter Sets: IdentityOnPremises, IdentityCloud

exchange/exchange-ps/exchange/Get-MailboxRepairRequest.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,8 @@ This example uses the Database and StoreMailbox parameters to display the Identi
8383
### -Identity
8484
The Identity parameter specifies the mailbox repair request to display information about. Mailbox repair requests are identified by a complex GUID that is created when a new mailbox repair request is created. This GUID consists of a database ID, a Request ID and a job ID. The format is `DatabaseGuid\RequestGuid\JobGuid`.
8585

86+
You can't use this parameter with the Database or Mailbox parameters.
87+
8688
```yaml
8789
Type: StoreIntegrityCheckJobIdParameter
8890
Parameter Sets: Identity
@@ -103,7 +105,7 @@ The Database parameter returns mailbox repair requests for all mailboxes on the
103105
- Distinguished name (DN)
104106
- GUID
105107
106-
You can't use this parameter with the Mailbox parameter.
108+
You can't use this parameter with the Identity or Mailbox parameters.
107109
108110
```yaml
109111
Type: DatabaseIdParameter
@@ -132,7 +134,7 @@ The Mailbox parameter specifies the mailbox that you want to get mailbox repair
132134
- SamAccountName
133135
- User ID or user principal name (UPN)
134136
135-
You can't use this parameter with the Database parameter.
137+
You can't use this parameter with the Database or Identity parameters.
136138
137139
```yaml
138140
Type: MailboxIdParameter

exchange/exchange-ps/exchange/Remove-MailboxRepairRequest.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,22 +37,22 @@ You need to be assigned permissions before you can run this cmdlet. Although thi
3737

3838
### Example 1
3939
```powershell
40-
Get-MailboxDatabase -Identity "EXCH-MBX-01" | Get-MailboxRepairRequest | Remove-MailboxRepairRequest
40+
Get-MailboxRepairRequest -Database "EXCH-MBX-01" | Remove-MailboxRepairRequest
4141
```
4242

4343
This example removes all mailbox repair requests for the mailbox database EXCH-MBX-01.
4444

4545
### Example 2
4646
```powershell
47-
Get-MailboxDatabase -Identity "EXCH-MBX-02" | Get-MailboxRepairRequest | Format-List Identity
47+
Get-MailboxRepairRequest -Database "EXCH-MBX-02" | Format-List Identity
4848
Remove-MailboxRepairRequest -Identity 5b8ca3fa-8227-427f-af04-9b4f206d611f\335c2b06-321d-4e73-b2f7-3dc2b02d0df5
4949
```
5050

51-
This example removes all related mailbox repair requests that have the same DatabaseGuid\\RequestGuid. The example uses the Get-MailboxRepairRequest cmdlet to display the value of the Identity parameter for all mailbox repair request for EXCH-MBX-02 mailbox database.
51+
This example removes all related mailbox repair requests that have the same `DatabaseGuid\RequestGuid` value. The example uses the Get-MailboxRepairRequest cmdlet to display the value of the Identity parameter for all mailbox repair request for EXCH-MBX-02 mailbox database.
5252

5353
### Example 3
5454
```powershell
55-
Get-MailboxDatabase -Identity "EXCH-MBX-02" | Get-MailboxRepairRequest | Format-List Identity
55+
Get-MailboxRepairRequest -Database "EXCH-MBX-02" | Format-List Identity
5656
Remove-MailboxRepairRequest -Identity 5b8ca3fa-8227-427f-af04-9b4f206d611f\189c7852-49bd-4737-a53e-6e6caa5a183c\1d8ca58a-186f-4dc6-b481-f835b548a929
5757
```
5858

0 commit comments

Comments
 (0)