Hello @Iltexanomontano
Yes, it requires a bit of syntax experience but I will explain it here.
You can use the WMI Operators, to specify wildcards or ranges of numbers, as seen in: https://learn.microsoft.com/en-us/windows/win32/wmisdk/like-operator
Example:
SELECT DisplayName, Version
FROM Win32Reg_AddRemovePrograms
WHERE (DisplayName LIKE '%Firefox%')
AND ((Version LIKE '7[8-9][0-9].[0-9]%') OR (Version LIKE '8[0-9].[0-9]%')) OR (Version LIKE '9[0-9].[0-9]%'))
In the case of (Version LIKE '7[8-9].[0-9]%') it does select versions 78 or 79 subversion .00 until 0.99. Another example is the (Version LIKE '9[0-9].[0-9]%')) which selects versions 90 - 99 with subversion .00 until 99
Hope this helps with your query,
--
--If the reply is helpful,please Upvote and Accept as answer--