Public/Functions/DriverPack/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 = 'https://ftp.hp.com/pub/softpaq/sp112501-113000/sp112810.exe' $DriverPackInfoUrl = 'http://ftp.ext.hp.com//pub/caps-softpaq/cmit/softpaq/WinPE10.html' Write-Verbose $DriverPackInfoUrl Try { (Invoke-WebRequest -Uri $DriverPackInfoUrl -UseBasicParsing -Method Get).Links | Where-Object {$_.href -like '*ftp.hp.com/pub/softpaq/*/*.exe'} | Select-Object -ExpandProperty href } Catch { Write-Output $LastKnownGood } } |