Commands › Exchange Online

Get-ExoInformationBarrierPolicy

Exchange Online ExchangeOnlineManagement Get-*

View information barrier policies in your Exchange Online organization.

Quick start script

# Get-ExoInformationBarrierPolicy — 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-ExoInformationBarrierPolicy | Format-List

# 3. Export for evidence / drift tracking
Get-ExoInformationBarrierPolicy | Export-Clixml .\ExoInformationBarrierPolicy-$(Get-Date -Format yyyyMMdd).xml

Syntax

Get-ExoInformationBarrierPolicy [[-Identity] <MailboxPolicyIdParameter>] [-ShowFriendlyValues] [<CommonParameters>]

Parameters (2)

ParameterTypeRequiredWhat it controls
-Identity MailboxPolicyIdParameter The Identity parameter specifies the Exchange Online information barrier policy that you want to view. You can use any value that uniquely identifies the policy. For example:
-ShowFriendlyValues SwitchParameter The ShowFriendlyValues switch specifies whether to show friendly values in the output of the command. You don't need to specify a value with this switch.

Reference facts derived from Microsoft documentation, © Microsoft, licensed CC BY 4.0; restructured with original guidance by serv365.ai.