Skip to main content

Get-LXCAIdentityManagementSystems

This cmdlet returns information about all configured identity-management systems or a specific identity-management system configuration.

Note
You cannot pipe objects to this cmdlet.

Syntax

Get-LXCAIdentityManagementSystems  [-Connection LXCAConnection] 
[-Name String]
[CommonParameter]

Parameters

-Connection LXCAConnection
Specifies the connection to the Lenovo XClarity Administrator server. If no connection is specified, the result from the last Connect-LXCA cmdlet is used.
-Name String
Type of identity-management system. This can be the following value.
  • CyberArk.
CommonParameters
This cmdlet supports the following common parameters: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -WarningAction, -WarningVariable, -OutBuffer, -PipelineVariable, -OutVariable. For detailed information about each common parameter, see the Microsoft PowerShell Common Parameters webpage.

Results

Examples

The following example retrieves all configured identity-management systems

$cred = Get-Credential
Connect-LXCA -Host "192.0.2.0" -Credential $Cred -SkipCertificateCheck

$result = Get-LXCAIdentityManagementSystems

# show all the information about the request:
# - Port, Host, Name and Paths
$result

# show all the information about all paths:
$result.Paths | Format-List

Disconnect-LXCA