Network Driver analysis

(imported topic written by SystemAdmin)

HI,

driven of the current Intel Centrino Bug i tried to create a property with the version of the wireless drivers.

After some hours of work, i was still not able to detect a wireless connection in windows 2000, i have done it for WXP.

So i created a property wich returns the the Driver Description and Version of all Netdrivers wich correspond to a physical Device.

Has anybody successfully implemented the update of the centrino Drivers ?

This will be my next step.

However here is the property:

( ( value “DisplayName” of it as string ) & " # " & ( ( version of file ( pathname of windows folder & “” & ( value “ImagePath” of it as string ) ) ) as string )) of keys ( ( “HKLM\SYSTEM\CurrentControlSet\Services” & service key value name of it ) of active devices whose ( ( class of it = “Net” ) AND ( exists location information of it ) ) ) of registry

(imported comment written by mauricem)

Just wanted to say thanks for this relevance expression. I was looking for a way to check the version number of an installed NIC driver. Making a few small changes enabled me to do that.

Thanks!

I’ve added the code below in case someone else is looking for it.

Q: ( ( value “DisplayName” of it as string ) & " # " & ( ( version of file ( pathname of windows folder & “” & ( value “ImagePath” of it as string ) ) ) as string )) of key ( ( “HKLM\SYSTEM\CurrentControlSet\Services” & service key value name of it ) of active device whose ( ( class of it = “Net” ) AND ( exists location information of it ) ) ) of registry as string = "Intel® PRO/1000 Network Connection Driver # 8.7.9.0"
A: True