what software was installed on same day as software with displayname

I want to create an analysis that finds what software was installed on the same day as another known software if it exists.

get this date
value “InstallDate” of keys whose ( value “DisplayName” of it as string contains “BigFix Console” ) of keys “HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall” of native registry

and return matches from the list
values “DisplayName” of keys of key “HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall” of native registry

this requires some kind of nested whose it ?

Edit:
I found a way to do this with powershell instead.