Nvidia vs OEM

Dell Hosted Driver

Nvidia Hosted Driver


OEM Support


Nvidia and Dell OEM Driver

Conclusion
Last updated
Was this helpful?







Last updated
Was this helpful?
Was this helpful?
$DeviceIds = @()
$Path = 'D:\OSDDrivers\Download\NvidiaDisplay\431.70-quadro-desktop-notebook-win10-64bit-international-whql'
$Infs = Get-ChildItem -Path "$Path" -Recurse -Include *.inf -File |`
Where-Object {$_.Name -notlike "*autorun.inf*"}
foreach ($Inf in $Infs) {
Write-Host "$($Inf.FullName)" -ForegroundColor DarkGray
$DeviceIds += Get-WindowsDriver -Online -Driver "$($Inf.FullName)"
}
$DeviceIds | Where-Object {$_.ClassName -eq 'Display' -and $_.HardwareId -match '08321028'} |`
Sort HardwareId -Unique |`
Select HardwareId, HardwareDescription, Version