/build/static/layout/Breadcrumb_cap_w.png

KACE Label or just search based on Network Interfaces?

We are tring to track down all of the laptops that have been deployed over the years in the company that have 3g cards built into them.

With the MANY different images that have been used over time, the only common variable i can find is a Mini-Card listed in the Network Interfaces.

 

No common software or services running.

 

Is it possible to create a label or run a sql search to find all machines with 'Mini-Card' listed in the Network Interfaces tab?


5 Comments   [ + ] Show comments
  • You can as there is a MACHINE_NICS table in the DB. You just have to try the wizard or connect and write your own SQL statement. - nshah 10 years ago
  • Here is my SQL search: SELECT MACHINE.NAME AS SYSTEM_NAME, SYSTEM_DESCRIPTION, MACHINE.IP, MACHINE.MAC, MACHINE.ID as TOPIC_ID FROM MACHINE WHERE ((MACHINE.NIC like '%mini%'))

    This is the error i get: Please correct the following errors:

    mysql error: [1054: Unknown column 'MACHINE.NIC' in 'where clause'] in EXECUTE( "SELECT MACHINE.NAME AS SYSTEM_NAME, SYSTEM_DESCRIPTION, MACHINE.IP, MACHINE.MAC, MACHINE.ID as TOPIC_ID FROM MACHINE WHERE ((MACHINE.NIC like '%mini%')) ")

    Any ideas? - jharrell 10 years ago
  • We are on 5.5 btw. And this is the information I'm needing to gather from the inventory page / network interfaces:

    Network Interfaces (2)
    1) Dw1501 Wireless-n Wlan Half-mini Card:

    I'm needing to find all the laptops that contain 'mini' anywhere in the network interface description. - jharrell 10 years ago
  • Try. just change the LIKE statement.

    SELECT
    MACHINE.`NAME` AS System,
    MACHINE_NICS.NIC AS Nic
    FROM
    MACHINE
    RIGHT OUTER JOIN MACHINE_NICS ON MACHINE_NICS.ID = MACHINE.ID
    WHERE
    MACHINE_NICS.NIC LIKE '%Miniport%' - nshah 10 years ago
  • No go on that one either. Its pulling random pcs. Even after changing the LIKE to '%mini%' - jharrell 10 years ago

Answers (0)

Be the first to answer this question

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