maurice-daly / DriverAutomationTool

Home of the Driver Automation Tool
https://www.msendpointmgr.com
BSD 2-Clause "Simplified" License
381 stars 114 forks source link

Latest HP BIOS Updates not downloading #506

Open rlgura opened 9 months ago

rlgura commented 9 months ago

Looks like 22H2 case is missing at line 14843 and 21H2 is set for 20H2. Be advised, the "h" has to be lower case!

switch -Wildcard ($OS) { "*22H2" { $OS = "10.0.22h2" } "*21H2" { $OS = "10.0.21h2" }

FredrikMatt commented 7 months ago

Which file are you refering to?

richie19rich77 commented 6 months ago

He is talking about "DriverAutomationTool.ps1", under the Find-HPBIOS function.

# Windows Build Driver Switch switch -Wildcard ($OS) { "*21H2" { $OS = "10.0.2009" } "*21H1" { $OS = "10.0.2009" } "*20H2" { $OS = "10.0.2009" }

Should be:

# Windows Build Driver Switch switch -Wildcard ($OS) { "*21h2" { $OS = "10.0.2009" } "*21h1" { $OS = "10.0.2009" } "*20h2" { $OS = "10.0.2009" }

No HP drivers are found if the above changes are not made.