Open rlgura opened 1 year ago
Which file are you refering to?
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.
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" }
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" }