Analysis to return value of multiple values from multiple registry keys with randomized names

Trying to query and return multiple value results from a registry key that has many sub key combinations of year and product version.

I can query a single know year and version with:
q: value “SERIAL_1” of key “HKLM\SOFTWARE\Carlson Software\SurvCADD\2022\ACAD_R24.1” of native registry
A: xxxxx-xxxxx-xxx-xxxxxx
T: 0.076 ms

Looking for assistance returning value of all values “SERIAL_1” under all the sub keys “HKLM\SOFTWARE\Carlson Software\SurvCADD” I have tried the following but it only returns “true” that the values exist, not the actual value. Is there a way to return all the values without actually querying every year and product version combination under “HKLM\SOFTWARE\Carlson Software\SurvCADD”

q: values “SERIAL_1” of keys “SOFTWARE\Carlson Software\SurvCADD” of key “HKLM” of native registry
T: 0.056 ms

q: (values “SERIAL_1” of it) of keys “SOFTWARE\Carlson Software\SurvCADD” of keys whose (name of it starts with “20”) of keys whose (name of it starts with “ACAD”) of key “HKLM” of native registry as string
T: 0.118 ms

(name of it, value "SERIAL_1" of it) of keys of keys of keys "HKLM\SOFTWARE\Carlson Software\SurvCADD" of native registry

This should give you the output:

A: ACAD_R24.1, xxxxx-xxxxx-xxx-xxxxxx

1 Like

Perfect. That did it. Thank You!

q: (name of it, value “SERIAL_1” of it) of keys of keys of keys “HKLM\SOFTWARE\Carlson Software\SurvCADD” of native registry
A: ACAD_R23.1, xxx-xx-xxx1
A: ACAD_R24.1, xxx-xx-xxx2
A: ICAD10_1, xxx-xx-xxx3
T: 0.249 ms