Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Creating report about ethernet cards

Status
Not open for further replies.

askinerdem

Technical User
Apr 19, 2008
1
TR
Hello,

I have a question. In our domain there are some users who have more than 1 ethernet card. Our domain is secure and we do not want users to connect internet without our proxy servers. To prevent this we need to find the computers which have 2 or more ethernet cards. How can I creat such a report query? In my report I want to see results like this:

pc001 2 ethernet cards
pc002 3 ethernet cards
.......................

 
If you have any SQL experience, you could create your own report. I dont have access to any SMS DB's and haven't touched if for a couple of years so I cant remember the fields/table names etc.

But explorer your SMS database and find the data that you want to report on and create a report with

SELECT SystemID, (count)NIC
FROM tablename
WHERE
(count)NIC>1;

Neil J Cotton
Technical Consultant
Anix
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top