Get-LXCASingleSignon
Use this cmdlet to return the single sign-on setting for Lenovo XClarity Administrator management server or for a specific ThinkSystem or ThinkAgile server.
Note
You cannot pipe objects to this cmdlet.
Syntax
Get-LXCASingleSignon [-Connection LXCAConnection]
[-Uuid 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.
- -Uuid String
- Specifies the UUID of a ThinkSystem or ThinkAgile server for which the single sign-on status is returned.
If not specified, the single sign-on setting for XClarity Administrator is returned.
- 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
- Lenovo.SysMgmt.LXCA.Integration.Data.SingleSignOnStatus
This cmdlet returns a Lenovo.SysMgmt.LXCA.Integration.Data.SingleSignOnStatus object that contains information about the single sign-on status.
Examples
The following example returns the single sign-on setting for a XClarity Administrator.
$cred = Get-Credential
Connect-LXCA -Host "192.0.2.0" -Credential $Cred -SkipCertificateCheck
$(Get-LXCASingleSignOn)
Disconnect-LXCA
The following example returns the single sign-on setting for a specific server.
$cred = Get-Credential
Connect-LXCA -Host "192.0.2.0" -Credential $Cred -SkipCertificateCheck
$(Get-LXCASingleSignOn -Uuid AB58B2DD17E604572A4679E24BE2938DE)
Disconnect-LXCA
Related links
Give documentation feedback