Get-Connectors

Synopsis

Gets the connectors from a management agent connector space

Syntax

Get-Connectors [-MA] <string> [[-Type] <ConnectorState>] [<CommonParameters>]

Description

The Get-Connectors cmdlet allows you to get the connectors from a management agent's connector space, optionally specifying to get either explicit or normal connectors.

Parameters

-MA <string>

The management agent to get the connectors from

-Type <ConnectorState>

The type of connectors to get, either "Explicit" or "Normal"

<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about CommonParameters.

Examples

Get all connectors from a connector space

PS C:\> Get-Connectors -MA ADMA

Get explicit connectors from a connector space

PS C:\> Get-Connectors -MA ACMA -Type Explicit

Get normal connectors from a connector space

PS C:\> Get-Connectors -MA ACMA -Type Normal

Last updated