(imported topic written by cstoneba)
Does anyone relevance that displays the version of Adobe flash installed? Mine is showing alot of errors. thanks
(imported topic written by cstoneba)
Does anyone relevance that displays the version of Adobe flash installed? Mine is showing alot of errors. thanks
(imported comment written by jcampbell91)
You should be able to use the following relevance to obtain the version of the Adobe Flash Player plugin on a windows system.
value “DisplayVersion” of key “HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin” of registry as string as version
(imported comment written by cstoneba)
thanks. I tweaked it a little.
if exists key whose (name of it starts with “Adobe Flash”) of keys “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall” of native registry then value “DisplayVersion” of key whose (name of it starts with “Adobe Flash”) of keys “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall” of native registry as string else “”
(imported comment written by cstoneba)
Why is it trying to display 2 results?
q: if exists key whose (name of it starts with “Adobe Flash”) of keys “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall” of native registry then value “DisplayVersion” of key whose (name of it starts with “Adobe Flash”) of key “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall” of native registry as string else “”
A: 10.0.32.18
E: Singular expression refers to non-unique object.
(imported comment written by jcampbell91)
Chances are it is attempting to return the results for the “Adobe Flash Plugin” key and the “Adobe Flash ActiveX” key. If you narrow down the criteria for the “name of it starts with” relevance that should take care of the issue.
(imported comment written by jcampbell91)
Sorry, that should have been “Adobey Flash Player ActiveX” and “Adobe Flash Player Plugin”.
This revised relevance should accomplish what you are looking for.
(if exists it then value “DisplayVersion” of it as string else “”) of key whose (name of it starts with “Adobe Flash Player Plugin”) of key “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall” of registry