/build/static/layout/Breadcrumb_cap_w.png

How do I do a search based upon the type of NIC drivers installed? Or any other kind of drivers?

Trying to create a list of computers based upon the type of NIC is installed on computer. Can't find anything in the built in parameters. I'd assume I would need to create a custom inventory, but how do I with drivers?

0 Comments   [ + ] Show comments

Answers (2)

Posted by: SMal.tmcc 8 years ago
Red Belt
1
you can use wmic to query the nic.  there are many options like(AdapterType  AdapterTypeId  AutoSense  Availability  Caption  ConfigManagerErrorCode  ConfigManagerUserConfig  CreationClassName  Description  DeviceID  ErrorCleared  ErrorDescription  GUID  Index  InstallDate  Installed  InterfaceIndex  LastErrorCode  MACAddress  Manufacturer  MaxNumberControlled  MaxSpeed  Name  NetConnectionID  NetConnectionStatus  NetEnabled  NetworkAddresses  PermanentAddress  PhysicalAdapter  PNPDeviceID  PowerManagementCapabilities  PowerManagementSupported  ProductName  ServiceName  Speed  Status  StatusInfo  SystemCreationClassName  SystemName  TimeOfLastReset )

 be somethings like wmic nic where "netconnectionstatus='2'" get name,adaptertype

As a CIR

ShellCommandTextReturn(cmd /c c:\windows\system32\wbem\WMIC.exe nic where "netconnectionstatus='2'" get name,adaptertype)

I use this one to read the memory chip info.

ShellCommandTextReturn(cmd /c c:\windows\system32\wbem\WMIC.exe memorychip get devicelocator,manufacturer,partnumber)

Posted by: chucksteel 8 years ago
Red Belt
0
This report will show you machines and their network interfaces based on the MACHINE_NICS table. 
SELECT MACHINE.NAME, MACHINE.IP, MACHINE_NICS.NIC, MACHINE_NICS.MAC 
FROM MACHINE
JOIN MACHINE_NICS on MACHINE_NICS.ID = MACHINE.ID

Don't be a Stranger!

Sign up today to participate, stay informed, earn points and establish a reputation for yourself!

Sign up! or login

Share

 
This website uses cookies. By continuing to use this site and/or clicking the "Accept" button you are providing consent Quest Software and its affiliates do NOT sell the Personal Data you provide to us either when you register on our websites or when you do business with us. For more information about our Privacy Policy and our data protection efforts, please visit GDPR-HQ