Skip to main content

Set-LXCASingleSignon

Use this cmdlet to enable or disable single sign-on for Lenovo XClarity Administrator management server or for a specific ThinkSystem or ThinkAgile server.

Note
You cannot pipe objects to this cmdlet.

Syntax

Set-LXCASingleSignon [-Connection LXCAConnection] 
[-Uuid String]
-SSOValue 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 modified.

-SSOValue String
Enables or disables single sign-on. This can be one of the following.
  • Enable. Enables single sign-on.

  • Disable: Disables single sign-on.

Note
Single sign-on is disabled automatically when using the CyberArk identity-management system for authentication.
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

This cmdlet returns a Lenovo.SysMgmt.LXCA.Integration.Data.RequestResult object that contains information about the operation result.

Examples

The following example modifies the single sign-on setting for a XClarity Administrator.

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

$(Set-LXCASingleSignOn -SSOValue Enable)

Disconnect-LXCA

The following example modifies the single sign-on setting for a specific server.

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

$(Set-LXCASingleSignOn -SSOValue Disable -Uuid AB58B2DD17E604572A4679E24BE2938DE)

Disconnect-LXCA