Commands › Exchange Online

Get-CmdletExtensionAgent

Exchange Online ExchangeOnlineManagement Get-*

View cmdlet extension agents.

Quick start script

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

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

Syntax — 2 parameter sets

Filters

Get-CmdletExtensionAgent [-Assembly <String>]
 [-Enabled <Boolean>]
 [-DomainController <Fqdn>]
 [<CommonParameters>]

Identity

Get-CmdletExtensionAgent [[-Identity] <CmdletExtensionAgentIdParameter>]
 [-DomainController <Fqdn>]
 [<CommonParameters>]

Parameters (4)

ParameterTypeRequiredWhat it controls
-Identity CmdletExtensionAgentIdParameter The Identity parameter specifies the name of the cmdlet extension agent that you want to view. You can use any value that uniquely identifies the agent. For example:
-Assembly String The Assembly parameter filters the results by the specified Assembly property value. The value for the built-in Exchange cmdlet extension agents is Microsoft.Exchange.ProvisioningAgent.dll.
-DomainController Fqdn The DomainController parameter specifies the domain controller that's used by this cmdlet to read data from or write data to Active Directory. You identify the domain controller by its fully qualified domain name...
-Enabled Boolean The Enabled parameter filters the results by enabled or disabled cmdlet extension agents. Valid values are:

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