Skip to main content

Get-LXCAManagementServerPackage

This cmdlet retrieves information about one or all management-server update packages that are in the Lenovo XClarity Administrator updates repository.

Note
You cannot pipe objects to this cmdlet.

Syntax

Get-LXCAManagementServerPackage [-Connection LXCAConnection]
-FixId 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.
-FixId String
Specifies the ID of the management-server update package. If an ID is not specified, the cmdlet returns information about all management-server update packages in the repository.
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 one or more UpdatePackage objects.

Examples

  • The following example retrieves information about all management-server update packages.
    $cred = Get-Credential
    Connect-LXCA -Host 192.0.2.0 -Credential $cred

    $packages = Get-LXCAManagementServerPackage

    Disconnect-LXCA
  • The following example retrieves information about a specific management-server update packages.
    $cred = Get-Credential
    Connect-LXCA -Host 192.0.2.0 -Credential $cred

    $fixId = lnvgy_utl_lxca-core_2.1.0-2018xxxx_anyos_noarch
    Get-LXCAManagementServerPackage $fixId

    Disconnect-LXCA