Commands › Exchange Online
Get-InformationBarrierRecipientStatus
For more information, see Security & Compliance PowerShell. Use the Get-InformationBarrierRecipientStatus cmdlet to return information about recipients and their relationship to information barrier policies. **Note**: This cmdlet doesn't work with information barriers in non-legacy mode. To determine your current mode, see Check the IB mode for your organization. If you're in non-legacy mode, run the following command to get information about a single recipient: `Get-Recipient -Identity <IdentityValue> | Format-List Name,*segment*`. Similarly, to get the relationship information between two re
Quick start script
# Get-InformationBarrierRecipientStatus — quick start (serv365.ai)
# 1. Connect (app-only shown; interactive: omit the certificate parameters)
Connect-ExchangeOnline -CertificateThumbprint $thumb -AppId $appId -Organization $org
# 2. Run and inspect
Get-InformationBarrierRecipientStatus -Identity <RecipientIdParameter> | Format-List
# 3. Export for evidence / drift tracking
Get-InformationBarrierRecipientStatus | Export-Clixml .\InformationBarrierRecipientStatus-$(Get-Date -Format yyyyMMdd).xml
Syntax
Get-InformationBarrierRecipientStatus [-Identity] <RecipientIdParameter> [[-Identity2] <RecipientIdParameter>]
[<CommonParameters>]
Parameters (2)
Reference facts derived from Microsoft documentation, © Microsoft, licensed CC BY 4.0; restructured with original guidance by serv365.ai.