Skip to content

Commit b731a0e

Browse files
authored
Merge pull request #10781 from MicrosoftDocs/chrisda
SoftDeleted param name incorrect
2 parents ec320e8 + 8918f3b commit b731a0e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

exchange/docs-conceptual/filter-properties.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1921,7 +1921,7 @@ For example, `Get-Recipient -Filter "WhenMailboxCreated -gt '8/1/2017 2:00:00 PM
19211921
|---|---|---|
19221922
|_msExchWhenSoftDeletedTime_|**Get-LinkedUser** <br> **Get-Mailbox** <br> **Get-MailUser** <br> **Get-RemoteMailbox** <br> **Get-User** <br> **Get-UnifiedGroup**|A date/time value: 64-bit value representing the number of 100-nanosecond intervals since January 1, 1601 (UTC)|
19231923

1924-
This filter requires the _SoftDeleted_ switch in the command for mailboxes. <br> For example, `Get-Mailbox -SoftDeleted -Filter "WhenSoftDeleted -gt '8/1/2017 2:00:00 PM'"`.
1924+
This filter requires the _SoftDeleted_ switch in the command for mailboxes. <br> For example, `Get-Mailbox -SoftDeletedMailbox -Filter "WhenSoftDeleted -gt '8/1/2017 2:00:00 PM'"`.
19251925

19261926
### WindowsEmailAddress
19271927

exchange/exchange-ps/exchange/Remove-MailUser.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ The PermanentlyDelete switch immediately and permanently deletes (purges) the ma
158158
**Notes**:
159159

160160
- This switch works only on mail users that have already been deleted, but are still recoverable (known as soft-deleted mail-users), that also have a blank value for the ExternalObjectId property.
161-
- Use the Get-MailUser cmdlet to identify the soft-deleted mail user, and then pipe the results to the Remove-MailUser cmdlet with this switch. For example, `Get-MailUser -Identity Laura -SoftDeleted | Remove-MailUser -PermanentlyDelete`.
161+
- Use the Get-MailUser cmdlet to identify the soft-deleted mail user, and then pipe the results to the Remove-MailUser cmdlet with this switch. For example, `Get-MailUser -Identity Laura -SoftDeletedMailUser | Remove-MailUser -PermanentlyDelete`.
162162

163163
```yaml
164164
Type: SwitchParameter

exchange/exchange-ps/exchange/Remove-Mailbox.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ In on-premises Exchange, this example removes John Rodman's mailbox from the mai
108108

109109
### Example 4
110110
```powershell
111-
Get-Mailbox -Identity Laura -SoftDeleted | Remove-Mailbox -PermanentlyDelete.
111+
Get-Mailbox -Identity Laura -SoftDeletedMailbox | Remove-Mailbox -PermanentlyDelete.
112112
```
113113

114114
In Exchange Online, this example removes the specified soft-deleted mailbox.

0 commit comments

Comments
 (0)