I need a solution
I have this filter built that pulls based on model name, works fine.
SELECT
[vri1_Computer].[Guid],
[vri1_Computer].[Name]
FROM
[vRM_Computer_Item] AS [vri1_Computer]
LEFT OUTER JOIN [Inv_HW_Logical_Device] AS [dca2_HW Logical Device]
ON ([vri1_Computer].[Guid] = [dca2_HW Logical Device].[_ResourceGuid])
WHERE
(
(
([dca2_HW Logical Device].[Model] LIKE N'Latitude 5480')
)
)
Can someone help me expand it to be something like "model like Latitude 5480" and BIOS Not like 1.8.1? I'm trying to plan mitigation for Spectre/Meltdown as discussed here.
0