Skip to content

Commit a2d476f

Browse files
committed
Update Remove-Mailbox.md
Issue #8278
1 parent 4557055 commit a2d476f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,15 +97,15 @@ This example removes the mailbox and the user account for the user named John Ro
9797
Remove-Mailbox -Identity "John Rodman" -Permanent $true
9898
```
9999

100-
This example removes the mailbox and the user account for the user named John Rodman. The mailbox is immediately and permanently removed from the mailbox database.
100+
In on-premises Exchange, this example removes the mailbox and the user account for the user named John Rodman. The mailbox is immediately and permanently removed from the mailbox database.
101101

102102
### Example 3
103103
```powershell
104104
$Temp = Get-Mailbox | Where {$_.DisplayName -eq 'John Rodman'}
105105
Remove-Mailbox -Database Server01\Database01 -StoreMailboxIdentity $Temp.MailboxGuid
106106
```
107107

108-
This example removes John Rodman's mailbox from the mailbox database after the mailbox has been disconnected from the user account. The example uses the Get-Mailbox cmdlet to retrieve the mailbox GUID value of the disconnected mailbox, which is required by the StoreMailboxIdentity parameter.
108+
In on-premises Exchange, this example removes John Rodman's mailbox from the mailbox database after the mailbox has been disconnected from the user account. The example uses the Get-Mailbox cmdlet to retrieve the mailbox GUID value of the disconnected mailbox, which is required by the StoreMailboxIdentity parameter.
109109

110110
### Example 4
111111
```powershell

0 commit comments

Comments
 (0)