hi,
how do i do add vendor specific icon to my SWQL results?
i saw this good video but i do not know is it still work on orion 2024.1.0 or not?
this is my code
SELECT
[node].MachineType
,[node].caption
,[node].Status
,'/NetPerfMon/Images/Vendors/' + [node].VendorIcon AS [_iconfor_machinetype]
FROM Orion.Nodes AS [node]
WHERE [node].Status != 1
AND (
( [node].MachineType LIKE 'VMware ESX Server') OR
( [node].MachineType LIKE 'Integrated-Lights-Out')
)