Get-EntraApplicationProxyConnector.

The Get-EntraApplicationProxyConnector cmdlet a list of all connectors, or if specified, details of a specific connector.

Syntax

Get-EntraApplicationProxyConnector.
   [-All]
    [-Top <Int32>]
    [-Filter <String>] 
   [<CommonParameters>]
Get-EntraApplicationProxyConnector.
   [-SearchString <String>]
    [-All] 
   [<CommonParameters>]
Get-EntraApplicationProxyConnector.
   -Id <String>
    [-All] 
   [<CommonParameters>]

Description

The cmdlet retrieves the details for a given conneGet-EntraApplicationProxyConnectorctor. If no connectorId is specified, it retrieves all the connectors assigned to the tenant.

Examples

Example 1: Retrieve connectors.

PS C:\> Get-EntraApplicationProxyConnector

Id                                   MachineName                      ExternalIp     Status
--                                   -----------                      ----------     ------
4c8b06e7-9751-41d5-8e5e-48e9b9bc2c66 AWCyclesApps.adventure-works.com 52.165.149.115 active
834c5dd6-f2e8-47ae-973a-9fc769289b3d AWCyclesAD.adventure-works.com   52.165.149.131 active

This example demonstrates how to retrieve all connectors.

Example 2: Retrieve connectors with ID parameter

PS C:\> Get-EntraApplicationProxyConnector -Id 4c8b06e7-9751-41d5-8e5e-48e9b9bc2c66

Id                                   MachineName                      ExternalIp     Status
--                                   -----------                      ----------     ------
4c8b06e7-9751-41d5-8e5e-48e9b9bc2c66 AWCyclesApps.adventure-works.com 52.165.149.115 active

This example demonstrates how to Retrieve information for a specific connector.

Parameters

-All

List all pages.

Type:SwitchParameter
Position:Named
Default value:False
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-Filter

Specifies an oData v3.0 filter statement. This parameter controls which objects are returned. Details on querying with oData can be found here: https://www.odata.org/documentation/odata-version-3-0/odata-version-3-0-core-protocol/#queryingcollections

Type:String
Position:Named
Default value:None
Required:False
Accept pipeline input:True
Accept wildcard characters:False

-Id

The ID of the specific connector. You can find ID by running the command without this parameter to get the desired ID, or by going into the portal and viewing connector details.

Type:String
Position:Named
Default value:None
Required:True
Accept pipeline input:True
Accept wildcard characters:False

-SearchString

Specifies a search string.

Type:String
Position:Named
Default value:None
Required:False
Accept pipeline input:True
Accept wildcard characters:False

-Top

Specifies the maximum number of records to return.

Type:Int32
Position:Named
Default value:None
Required:False
Accept pipeline input:True
Accept wildcard characters:False

Inputs

System.String

System.Nullable`1[[System. Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]] System.Nullable`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]

Outputs

System.Object

Notes