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 LXCOConnection
- 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
- Lenovo.XClarityOrchestrator.PowerShell.Data.FirmwareCatalogEntry[]
If -ID is not specified, this cmdlet returns an array of FirmwareCatalogEntry objects, which contains information about the entries in the update catalog.
- Lenovo.XClarityOrchestrator.PowerShell.Data.DeviceFirmwareCatalog
If -ID is specified, this cmdlet returns a FirmwareCatalogEntry object, with information about the specified entry in the updates catalog.
- Lenovo.XClarityOrchestrator.PowerShell.Data.RequestStatusMessage
If an error occurred, this cmdlet returns a RequestStatusMessage object that contains information about the reason of the failure.
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
Give documentation feedback