Get-MyDriverPack by default just grabs the latest driver for the device model, Unfortunately Dell is now presenting windows 11 Drivers that can break windows 10 on a few select models. I've learn this lesson the hard way.
I've modified the function a bit, but it's really just a hack, maybe you can come up with a more elegant solution?
Get-MyDriverPack by default just grabs the latest driver for the device model, Unfortunately Dell is now presenting windows 11 Drivers that can break windows 10 on a few select models. I've learn this lesson the hard way.
I've modified the function a bit, but it's really just a hack, maybe you can come up with a more elegant solution?
`function Get-MyDriverPack { [CmdletBinding()] param ( [System.String]$Manufacturer = (Get-MyComputerManufacturer -Brief), [System.String]$Product = (Get-MyComputerProduct) )
=================================================
}`