Public/Functions/Catalogs/WinPE/Get-HpWinPEDriverPack.ps1
function Get-HpWinPEDriverPack { <# .SYNOPSIS Returns the URL of the latest HP WinPE 10 Driver Pack .DESCRIPTION Download and expand WinPE Drivers .LINK https://github.com/OSDeploy/OSD/tree/master/Docs #> [CmdletBinding()] param () $LastKnownGood = $Global:OSDModuleResource.WinPEDriverPack.HP.LastKnownGood $DriverPackInfoUrl = $Global:OSDModuleResource.WinPEDriverPack.HP.Info Write-Verbose $DriverPackInfoUrl Try { (Invoke-WebRequest -Uri $DriverPackInfoUrl -UseBasicParsing -Method Get).Links | Where-Object {$_.href -like '*.hp.com/pub/softpaq/*/*.exe'} | Select-Object -ExpandProperty href } Catch { Write-Output $LastKnownGood } } |