This cmdlet retrieves a list of firmware-update packages in the firmware-updates repository.
Get-LXCAUpdatePackage [-Connection LXCAConnection]
[-MachineType String[]]
[CommonParameter]
This cmdlet returns one or more UpdatePackage objects.
The following example retrieves information about the update packages for all available machine types in the firmware-updates repository.
$cred = Get-Credential
Connect-LXCA -Host 192.0.2.0 -Credential $cred
$packages = Get-LXCAUpdatePackage
Disconnect-LXCA
The following example retrieves information about the update packages for specific machine types in the firmware-updates repository.
$cred = Get-Credential
Connect-LXCA -Host 192.0.2.0 -Credential $cred
$packages = Get-LXCAUpdatePackage -MachineType 7893,8724
Disconnect-LXCA