Please suggest how to fetch the Version details for WPMS tool

Please suggest how to fetch the Version details for WPMS tool, We have tool named WPMS and it installed and located in C:\program files\WPMSutility and in registry start up path is “HKEY_LOCAL_MACHINE\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Run”.

Can any one suggest how to fetch the version status.

I don’t know what the WPMS tool is, a link would be helpful. Regardless, you can get the version details from either the file, like so:

q: version of file "C:\Utility\PsExec.exe" as string | "Unknown"
A: 2.11.0.0
T: 0.278 ms
I: singular string

Or via the registry:

q: value "DisplayVersion" of keys "HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Uninstall\{32170F69-40C1-2702-0920-000001000000}" of (x64 registries; x32 registries) as string | "Unknown"
A: 2.11.0.0
T: 0.218 ms
I: singular string

The registry path you provided is just the Run key, so that wouldn’t help you. You need to search the registry for WPMS to see if the utility created some key with version information somewhere like my example.

hi Sean,
There is no registry key for WPMS tool S/W, perhaps this tool has been installed on local C:\ drive under program files with a file name agentevents.exe. Now through analysis help I want to get the system counts where this tool has installed. Hope you find the idea what to get the information.

In the analysis you can create a property whose relevance is (for example):

exists file "C:\Program Files\AgentEvents.exe"

If you need to know more about how to create analyses, please take some time to read the documentation.

Thank you Sean,

I have already checked that. Let see if I can get more information about this.