Creating an analysis for all installed version of a software

I am brand new to BigFix and am assisting on some maintenance.

I am trying to create an analysis for all installed versions of Python.

Since the user can install the application in an arbitrary location I wanted to use the registry to tell me what version was installed.

Is there a way for me to return the value of DisplayVersion for any registry key that contains ‘python’ in DisplayName ?

Thanks in advance.

There are different ways to get the registry values. Try the following:
values “DisplayVersion” of keys whose (value “DisplayName” of it as string as lowercase starts with “python” as lowercase) of keys “HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Uninstall” of (x32 registries;x64 registries)
3.9.7354.0
3.9.2150.0
3.9.2150.0
3.9.2150.0
3.9.2150.0
3.9.2150.0
3.9.2150.0
3.9.2150.0
3.9.2150.0
3.9.2150.0

3 Likes

This works for what I need.

Much appreciated for the prompt response. I found many examples of verifying it existed with a true/false statement, but none for pulling the data.