Commands › Exchange Online

Get-BillingPolicy

Exchange Online ExchangeOnlineManagement Get-*

Return detailed information about Microsoft 365 pay-as-you-go billing policies for High Volume Email configured for your organization.

Quick start script

# Get-BillingPolicy — 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-BillingPolicy -ResourceType <String> | Format-List

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

Syntax

Get-BillingPolicy [-ResourceType] <System.String> [<CommonParameters>]

Parameters (1)

ParameterTypeRequiredWhat it controls
-ResourceType String yes The ResourceType parameter specifies the type of billing policies to retrieve. Currently, the only supported value is HVE.

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