I need a solution
Hi, I have a machine report that gives me details of the machines (by ip adddress)
e.g :
SELECT
*,
CASE
WHEN [IP Address] LIKE '10.180.%' THEN 'New York'
WHEN [IP Address] LIKE '10.200.%' THEN 'Sydney'
WHEN [IP Address] LIKE '192.168%' THEN '-Remote Connection - undefined'
ELSE 'Not defibned' END AS 'Site'
FROM vComputer vc
Can anyone help me how I would add the model type to this report.
Appreciate the help
Thanks