Software Distrobution Relevance help

I am creating a software distrobution and I need a relevance to check the version of the ODBC Driver and if the key exists and the version is less than 17.10.6.1 the fixlet will be true.

I have it looking for the following registry key: It displays the current key but I am at a loss on how to get that output into a relevance statement that would make the fixlet return as true if it is less than that value.

(value “Version” of key “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft ODBC Driver 17 for SQL Server\CurrentVersion” of native registry)

Thanks for the info.

How about something like:

exists value "Version" whose (it as string as version < "17.10.6.1" as version) of keys "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft ODBC Driver 17 for SQL Server\CurrentVersion" of native registry

1 Like