Skip to main content

Get-LXCOFirmwareCatalog

This cmdlet returns a list of entries in the update catalog, or information about a specific entry in the updates catalog.

Note
You cannot pipe objects to this cmdlet.

Syntax

Get-LXCOFirmwareCatalog [-Connection LXCOConnection] 
[-ID String]
[CommonParameter]

Parameters

-Connection LXCAConnection
Specifies the connection to the Lenovo XClarity Orchestrator server. If no connection is specified, the result from the last Connect-LXCO cmdlet is used.
-ID String
ID of the entry in updates catalog.
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 returns a detailed information about a specified entry in updates catalog.

$cred = Get-Credential
Connect-LXCO -HostUri 192.0.2.0 -Credential $cred -SkipCertificateCheck

$result = Get-LXCOFirmwareCatalog -ID "repopack"
$result | Format-List

Disconnect-LXCO