maurice-daly / DriverAutomationTool

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

Latest HP BIOS Updates not downloading #506

Open rlgura opened 1 year ago

rlgura commented 1 year 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 1 year ago

Which file are you refering to?

richie19rich77 commented 11 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.

ArildVo commented 4 months ago

Coulden't find bios'es for newer HP models like HP ProBook 445 14 inch G11 Notebook PC using $OS = "10.0.2009" Find # Windows Build Driver Switch switch -Wildcard ($OS) { Then add below: "*23h2" { $OS = "11.0.23h2" }