Was wondering one thing....
I can use the script
SELECT COUNT(InterfaceDescription) AS NumPorts, N.Caption
FROM NCM.Interfaces I JOIN Orion.Nodes N ON (I.Node.CoreNodeID = N.NodeID)
WHERE NOT ((InterfaceTypeName like '%Virtual%') OR (InterfaceTypeName = 'other') OR (InterfaceTypeName like '%loop%'))
GROUP BY N.NodeID, N.Caption
ORDER BY NumPorts DESC
But one thing I would like to add here, and don´t know how to.....
I have made some custom property that I would to have this filter after, since I would only like to see my switches.
Is there any way that I can make some filter on this matter also???
Great work be the way.