Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Newly Created HP BIOS Update Packages Suppressing Leading Zero in Version (7.2.4) #559

Open
jpatton1979 opened this issue Sep 25, 2024 · 3 comments

Comments

@jpatton1979
Copy link

In previous versions of the tool, HP BIOS updates were versioned exactly as HP lists them (e.g. Elite Mini 800 G9 would be 02.15.12). However, the tool is now suppressing the leading zero (e.g. 2.15.12). This is resulting in packages being unnecessarily created when the latest version is already packaged. I've tried this on both an Elite Mini 800 G9 and an EliteBook 860 16 inch G10.

image

image

@ericvanboven
Copy link

I have just been removing the extra 0 after so it will work with devices.

@jpatton1979
Copy link
Author

We've got lots of pre-existing BIOS update packages so going back and deleting the leading "0" on all of them isn't really an option...especially if/when this gets fixed/reverted then we'd have to go back and re-add the leading "0".

@stephannn
Copy link

Hi,
the change may comes through the Get-SoftpaqList module from HP. I modified it like this:
$BIOSVer = (($HPBIOSDownload.Version.Trim() -split '\.') | ForEach-Object { $_.PadLeft(2, '0') }) -join '.'
I modified it in my fork: https://github.com/stephannn/DriverAutomationTool/blob/master/Current%20Branch/7.2.2/DriverAutomationTool.ps1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants