Public/Functions/Catalogs/Child/Get-HPBiosCatalog.ps1
<#
.SYNOPSIS Returns the BIOS Component of the HP System Catalog .DESCRIPTION Returns the BIOS Component of the HP System Catalog .PARAMETER Compatible If you have a HP System, this will filter the results based on your Baseboard Product value .LINK https://github.com/OSDeploy/OSD/tree/master/Docs .NOTES #> function Get-HPBiosCatalog { [CmdletBinding()] param ( #Limits the results to match the current system [System.Management.Automation.SwitchParameter] $Compatible ) if ($PSBoundParameters.ContainsKey('Compatible')) { Get-HPSystemCatalog -Component BIOS -Compatible | Sort-Object -Property CreationDate -Descending } else { Get-HPSystemCatalog -Component BIOS | Sort-Object -Property CreationDate -Descending } } |