Public/Functions/DriverPack/Get-HpDriverPack.ps1
function Get-HpDriverPack { [CmdletBinding()] param ( [System.String]$DownloadPath ) #================================================= # Get Catalog #================================================= $Results = Get-OSDCatalogHPDriverPack | ` Select-Object CatalogVersion, Status, ReleaseDate, Manufacturer, Model, ` @{Name='Product';Expression={([array]$_.SystemId)}}, ` @{Name='Name';Expression={($_.Name)}}, ` @{Name='PackageID';Expression={($_.SoftPaqId)}}, ` FileName, ` @{Name='DriverPackUrl';Expression={($_.Url)}}, ` @{Name='DriverPackOS';Expression={($_.OSName)}}, ` @{Name='HashMD5';Expression={($_.MD5)}} foreach ($Result in $Results) { if ($Result.DriverPackOS -match 'Windows 11') { $Result.DriverPackOS = 'Windows 11 x64' } elseif ($Result.DriverPackOS -match 'Windows 10') { $Result.DriverPackOS = 'Windows 10 x64' } } $Results = $Results | Sort-Object -Property Model #================================================= # DownloadPath #================================================= if ($PSBoundParameters.ContainsKey('DownloadPath')) { if (Test-Path $DownloadPath) { $DownloadedFiles = Get-ChildItem -Path $DownloadPath *.* -Recurse -File | Select-Object -ExpandProperty Name foreach ($Item in $Results) { if ($Item.FileName -in $DownloadedFiles) { $Item.Status = 'Downloaded' } } } $Results = $Results | Sort-Object -Property @{Expression='Status';Descending=$true}, Name | Out-GridView -Title 'Select one or more Driver Packs to Download' -PassThru -ErrorAction Stop foreach ($Item in $Results) { $OutFile = Save-WebFile -SourceUrl $Item.DriverPackUrl -DestinationDirectory $DownloadPath -DestinationName $Item.FileName -Verbose $Item | ConvertTo-Json | Out-File "$($OutFile.FullName).json" -Encoding ascii -Width 2000 -Force } } else { $Results } } |