Hello,
Is there a way to to determine installed agent version on my device using command-line?
Best,
Paweł
Jul 31, 2023 06:32 AM
For windows you can use the following:
reg query "HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\ManageSoft Corp\ManageSoft" /v ETCPVersion
This will give you the version of the agent installed
Jul 31, 2023 06:39 AM
Use below , This will give more details
wmic product where "Vendor like '%flex%' " get Name, Version, installlocation, installdate
Aug 02, 2023 01:21 AM
For windows you can use the following:
reg query "HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\ManageSoft Corp\ManageSoft" /v ETCPVersion
This will give you the version of the agent installed
Jul 31, 2023 06:39 AM
Wow! That was fast! I forgot to mention that I was looking for solution for windows, so this is all I need. Thanks a bunch!
Jul 31, 2023 06:43 AM