This cmdlet retrieves all available PowerShell connections with the Lenovo XClarity Administrator server that can be used by other cmdlets. Use Disconnect-LXCA to disconnect from the XClarity Administrator server.
Get-LXCAConnection [CommonParameter]
This cmdlet returns one or more LXCAConnection class objects.
The following example retrieves a list of all available PowerShell sessions and then disconnects them from the XClarity Administrator server.
$cred = Get-Credential
Connect-LXCA -Host 192.0.2.0 -Credential $cred
$connections = Get-LXCAConnection
foreach ($conn in $connections)
{
Disconnect-LXCA -Connection $conn
}