Skip to content

Commit 5a831e5

Browse files
authored
Update Get-CASMailbox.md
Added information about the "-RecipientTypeDetails" filter. Copied its definition from the Get-Mailbox article.
1 parent 92b0814 commit 5a831e5

File tree

1 file changed

+50
-0
lines changed

1 file changed

+50
-0
lines changed

exchange/exchange-ps/exchange/Get-CASMailbox.md

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ Get-CASMailbox [-Anr <String>]
4040
[-SortBy <String>]
4141
[-ReadIsOptimizedForAccessibility]
4242
[-RecalculateHasActiveSyncDevicePartnership] [<CommonParameters>]
43+
[-RecipientTypeDetails <RecipientTypeDetails[]>]
4344
```
4445

4546
### Identity
@@ -59,6 +60,7 @@ Get-CASMailbox [[-Identity] <MailboxIdParameter>]
5960
[-SortBy <String>]
6061
[-ReadIsOptimizedForAccessibility]
6162
[-RecalculateHasActiveSyncDevicePartnership] [<CommonParameters>]
63+
[-RecipientTypeDetails <RecipientTypeDetails[]>]
6264
```
6365

6466
## DESCRIPTION
@@ -99,6 +101,14 @@ Get-CASMailbox [email protected] | Format-List Ews*
99101

100102
This example returns all Exchange Web Services settings for the user [email protected].
101103

104+
105+
### Example 4
106+
```powershell
107+
Get-CASMailbox -RecipientTypeDetails SharedMailbox | Select *
108+
```
109+
110+
This example filters the cmdlet output to only include Shared mailboxes.
111+
102112
## PARAMETERS
103113

104114
### -ActiveSyncDebugLogging
@@ -409,6 +419,46 @@ Accept pipeline input: False
409419
Accept wildcard characters: False
410420
```
411421

422+
### -RecipientTypeDetails
423+
The RecipientTypeDetails parameter filters the results by the specified mailbox subtype. Valid values are:
424+
425+
- DiscoveryMailbox
426+
427+
- EquipmentMailbox
428+
429+
- GroupMailbox
430+
431+
- LegacyMailbox
432+
433+
- LinkedMailbox
434+
435+
- LinkedRoomMailbox
436+
437+
- RoomMailbox
438+
439+
- SchedulingMailbox
440+
441+
- SharedMailbox
442+
443+
- TeamMailbox
444+
445+
- UserMailbox
446+
447+
You can specify multiple values separated by commas.
448+
449+
```yaml
450+
Type: RecipientTypeDetails[]
451+
Parameter Sets: (All)
452+
Aliases:
453+
Applicable: Exchange Server 2010, Exchange Server 2013, Exchange Server 2016, Exchange Server 2019, Exchange Online
454+
455+
Required: False
456+
Position: Named
457+
Default value: None
458+
Accept pipeline input: False
459+
Accept wildcard characters: False
460+
```
461+
412462
### -ResultSize
413463
The ResultSize parameter specifies the maximum number of results to return. If you want to return all requests that match the query, use unlimited for the value of this parameter. The default value is 1000.
414464

0 commit comments

Comments
 (0)