NIC driver multiple systems

I need to pull back the NIC drivers info for multiple systems but I can’t figure out how to pull that info for different NICs. This is what I have so far:

string values of selects “DriverVersion from Win32_PnPSignedDriver where DeviceClass=‘Net’ and DeviceName =‘Realtek PCIe GbE Family Controller’” of wmis

Of course this only works if I know the specific NIC and I don’t want create like 10 different analysis. I tried to substitute:

descriptions of adapters of network

But it doesn’t seem work. Any ideas?

I mean quick and dirty I just did

string values of selects “DeviceName, DriverVersion” from Win32_PnPSignedDriver where DeviceClass=‘Net’" of wmis

It doesn’t really concatenate but if you want to make an effort to make it look nice go here: SOLVED: No easy way to combine multiple WMI properties of multiple WMI instances

1 Like