Forum Discussion
chrishorsted720
Apr 14, 2025Copper Contributor
Adaptive Scopes
Hi I have built a Purview Adaptive Scope with query syntax RecipientTypeDetails -eq 'UserMailbox' to only return user mailboxes because we want to include Shared Mailboxes. This scope has been used ...
- Apr 15, 2025
You should be able to use the IsInactiveMailbox property:
(RecipientTypeDetails -eq "UserMailbox") -and (IsInactiveMailbox -eq "false")
VasilMichev
Apr 15, 2025MVP
You should be able to use the IsInactiveMailbox property:
(RecipientTypeDetails -eq "UserMailbox") -and (IsInactiveMailbox -eq "false")
- chrishorsted720Apr 23, 2025Copper Contributor
Apologies for not replying the adaptive scope took several days to populate. This appears to have now populated the scope with only User Mailboxes and has excluded Inactive Mailboxes.