Does anyone have the relevance (versions of) for Firefox plugins installed, specifically Cisco WebEx ?
Thanks in advance …
Does anyone have the relevance (versions of) for Firefox plugins installed, specifically Cisco WebEx ?
Thanks in advance …
You can check for the Webex extension with the following relevance:
(version of client >= “6.0.0.0”) AND ((exists true whose (if true then (exists (operating system) whose (it as string as lowercase contains “Win” as lowercase)) else false)) AND (exists true whose (if true then (exists file (“addons.json”) whose (exists line whose (it contains “cisco_webex_extension”) of it) of folders of folders "\AppData\Roaming\Mozilla\Firefox\Profiles" of folders of folder “C:\Users”) else false)))
You can then check the version with the following:
following texts of firsts “cisco_webex_extension” of lines whose (it contains “cisco_webex_extension”) of files “addons.json” of folders of folders "Appdata\Roaming\Mozilla\Firefox\Profiles" of folders of folder “C:\Users”
Not too elegant, but it works.
Thanks for your input. This appears to be working better, although I would prefer to use the JSON inspector to parse the name, and version from the addons.json if possible.
if (exists file (“addons.json”) whose (exists line whose (it contains “cisco_webex_extension”) of it) of folders of folders “\AppData\Roaming\Mozilla\Firefox\Profiles” of folders of folder (name of drive of system folder &"\Users")) then following texts of firsts “cisco_webex_extension-” of preceding text of first “-an+fx” of lines whose (it contains “cisco_webex_extension”) of files “addons.json” of folders of folders “Appdata\Roaming\Mozilla\Firefox\Profiles” of folders of folder (name of drive of system folder &"\Users") else “N/A”
Your query certainly returns a cleaner result string than mine. Thanks!